20 lines
404 B
TOML
20 lines
404 B
TOML
[project]
|
|
name = "biliup-next"
|
|
version = "0.1.0"
|
|
description = "Next-generation control-plane-first biliup pipeline"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"requests>=2.32.0",
|
|
"groq>=0.18.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
biliup-next = "biliup_next.app.cli:main"
|
|
|
|
[tool.setuptools]
|
|
package-dir = {"" = "src"}
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=68", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|