-
Notifications
You must be signed in to change notification settings - Fork 116
/
pyproject.toml
61 lines (54 loc) · 1.42 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
[tool.poetry]
name = "BaiduPCS-Py"
homepage = "https://github.com/PeterDing/BaiduPCS-Py"
version = "0.7.6"
description = "Baidu 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"
requests-toolbelt = ">=1.0"
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"
cython = ">=3.0"
passlib = ">=1.7"
[tool.poetry.group.dev.dependencies]
pytest = ">=7.4"
ruff = ">=0.3"
setuptools = ">=69.0"
cython = ">=3.0"
[tool.poetry.build]
script = "build.py"
generate-setup-file = true
[tool.poetry.scripts]
BaiduPCS-Py = 'baidupcs_py.app:main'
[build-system]
requires = ["poetry-core", "cython", "wheel", "setuptools"]