Initial commit
This commit is contained in:
29
pyproject.toml
Normal file
29
pyproject.toml
Normal file
@@ -0,0 +1,29 @@
|
||||
[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*"]
|
||||
Reference in New Issue
Block a user