-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
43 lines (36 loc) · 950 Bytes
/
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
[tool.poetry]
name = "aget"
homepage = "https://github.com/PeterDing/aget"
version = "0.2.0"
description = "Aget - An Asynchronous Downloader"
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.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
[tool.black]
line-length = 119
[tool.ruff]
ignore = ["E501", "F401", "F841"]
line-length = 119
[tool.poetry.dependencies]
python = "^3.8"
httpx = ">=0.25"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
mypy = "^0.991"
black = "^22.10.0"
[tool.poetry.scripts]
aget = "aget:main"
[tool.pyright]
reportGeneralTypeIssues = true
[build-system]
requires = ["setuptools"]