-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpyproject.toml
71 lines (63 loc) · 1.58 KB
/
pyproject.toml
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[tool.poetry]
name = "AliPCS-Py"
homepage = "https://github.com/PeterDing/AliPCS-Py"
version = "0.8.1"
description = "Ali Pcs Api and App"
authors = ["PeterDing <[email protected]>"]
license = "MIT"
readme = "README.md"
classifiers = [
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[tool.black]
line-length = 119
[tool.ruff]
lint.ignore = ["E501", "E402", "F401", "F403", "F841"]
line-length = 119
[tool.poetry.dependencies]
python = "^3.8"
requests = ">=2.31"
requests-toolbelt = ">=1.0"
peewee = ">=3.17"
toml = ">=0.10"
python-dateutil = ">=2.8"
qrcode = ">=7.4"
rich = ">=13.7"
pillow = ">=10.1"
click = ">=8.1"
typing-extensions = ">=4.8"
aget = ">=0.2"
chardet = ">=5.2"
fastapi = ">=0.104"
uvicorn = ">=0.24"
jinja2 = ">=3.1"
cryptography = ">=41.0"
ecdsa = ">=0.18"
cython = ">=3.0"
passlib = ">=1.7"
[tool.poetry.group.dev.dependencies]
pytest = ">=7.4"
pytest-cov = ">=5.0"
Faker = ">=24"
ruff = ">=0.3"
setuptools = ">=69.0"
cython = ">=3.0"
[tool.poetry.build]
script = "build.py"
generate-setup-file = true
[tool.poetry.scripts]
AliPCS-Py = 'alipcs_py.app:main'
[tool.pyright]
reportGeneralTypeIssues = true
[build-system]
requires = ["poetry-core", "cython", "wheel", "setuptools"]