17 lines
376 B
TOML
17 lines
376 B
TOML
[build-system]
|
|
requires = ["setuptools>=45", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "pipeline-service"
|
|
version = "1.0.0"
|
|
description = "Hermes Pipeline Backend - manages KTV/MV production pipeline tasks"
|
|
requires-python = ">=3.8"
|
|
dependencies = [
|
|
"aiohttp>=3.8",
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
include = ["pipeline_service*"]
|