forked from cnitlrt/AutoTeam
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (30 loc) · 709 Bytes
/
Copy pathpyproject.toml
File metadata and controls
35 lines (30 loc) · 709 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[project]
name = "autoteam"
version = "0.1.0"
description = "ChatGPT Team 账号自动轮转管理工具"
requires-python = ">=3.10"
dependencies = [
"curl-cffi>=0.13.0",
"fastapi>=0.135.3",
"playwright>=1.40.0",
"requests>=2.28.0",
"rich>=14.3.4",
"uvicorn[standard]>=0.44.0",
"xvfbwrapper>=0.2.9; sys_platform == 'linux'",
]
[project.scripts]
autoteam = "autoteam.manager:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/autoteam"]
[dependency-groups]
dev = [
"pre-commit>=4.5.1",
"pytest>=8.4.2",
"ruff>=0.15.10",
]
[tool.pytest.ini_options]
addopts = "-ra"
testpaths = ["tests"]