Initial commit

This commit is contained in:
2026-05-24 21:47:44 +08:00
commit 2ce35563c4
20 changed files with 3698 additions and 0 deletions

29
pyproject.toml Normal file
View 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*"]