26 lines
552 B
TOML
26 lines
552 B
TOML
[project]
|
|
name = "douyu-login-py"
|
|
version = "0.1.0"
|
|
description = "斗鱼自动登录工具 - Python版"
|
|
readme = "README.md"
|
|
requires-python = ">=3.12,<3.13"
|
|
dependencies = [
|
|
"requests>=2.31.0",
|
|
"pycryptodome>=3.19.0",
|
|
"numpy>=1.24.0",
|
|
"opencv-python-headless>=4.8.0",
|
|
"Pillow>=10.0.0",
|
|
"PyYAML>=6.0",
|
|
"loguru>=0.7.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
douyu-login = "main:main"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["douyu", "geetest", "utils", "gui"]
|