30 lines
693 B
TOML
30 lines
693 B
TOML
[build-system]
|
|
requires = ["setuptools>=61.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "hunyuan3dweb"
|
|
version = "0.1.0"
|
|
description = "Tencent Hunyuan 3D Web API client and browser automation tools"
|
|
readme = "README.md"
|
|
requires-python = ">=3.8"
|
|
dependencies = [
|
|
"requests",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
browser = [
|
|
"cloakbrowser",
|
|
"playwright",
|
|
]
|
|
|
|
[project.scripts]
|
|
hunyuan3dweb = "hunyuan3dweb.cli:main"
|
|
hunyuan3dweb-login = "hunyuan3dweb.browser.login:main"
|
|
hunyuan3dweb-sniffer = "hunyuan3dweb.browser.sniffer:main"
|
|
hunyuan3dweb-generate = "hunyuan3dweb.browser.generator:main"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
include = ["hunyuan3dweb*"]
|