30 lines
654 B
TOML
30 lines
654 B
TOML
[build-system]
|
||
requires = ["setuptools>=61.0"]
|
||
build-backend = "setuptools.build_meta"
|
||
|
||
[project]
|
||
name = "hy3d"
|
||
version = "0.2.0"
|
||
description = "非官方腾讯混元 3D CLI 与 Python API 客户端(3d.hunyuan.tencent.com)"
|
||
readme = "README.md"
|
||
requires-python = ">=3.9"
|
||
dependencies = [
|
||
"requests>=2.32.3",
|
||
]
|
||
|
||
[project.optional-dependencies]
|
||
browser = [
|
||
"cloakbrowser>=0.3.31",
|
||
"playwright>=1.40",
|
||
]
|
||
|
||
[project.scripts]
|
||
hy3d = "hy3d.cli:main"
|
||
hy3d-login = "hy3d.browser.login:main"
|
||
hy3d-sniffer = "hy3d.browser.sniffer:main"
|
||
hy3d-generate = "hy3d.browser.generator:main"
|
||
|
||
[tool.setuptools.packages.find]
|
||
where = ["."]
|
||
include = ["hy3d*"]
|