-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
80 lines (71 loc) · 2.28 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
72
73
74
75
76
77
78
79
80
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "turbodl"
version = "0.5.2"
description = "TurboDL is an extremely smart, fast, and efficient download manager designed to optimize your downloading experience."
license = "MIT"
readme = "README.md"
authors = ["henrique-coder <[email protected]>"]
maintainers = ["henrique-coder <[email protected]>"]
keywords = [
"dl",
"downloader",
"manager",
"python",
"smart",
"turbodl"
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Internet",
"Topic :: Software Development :: Libraries",
"Typing :: Typed"
]
packages = [{ include = "turbodl" }]
include = [
"LICENSE",
"turbodl/py.typed"
]
[tool.poetry.urls]
homepage = "https://github.com/henrique-coder/turbodl"
documentation = "https://github.com/henrique-coder/turbodl/blob/main/README.md"
repository = "https://github.com/henrique-coder/turbodl"
"Bug Tracker" = "https://github.com/henrique-coder/turbodl/issues"
"Changelog" = "https://github.com/henrique-coder/turbodl/releases/latest"
[tool.poetry.dependencies]
python = "^3.10"
httpx = "^0.28.1"
humanfriendly = "^10.0"
psutil = "^7.0.0"
rich = "^14.0.0"
streamsnapper = { git = "https://github.com/henrique-coder/streamsnapper.git", branch = "main"}
tenacity = "^9.1.2"
typer = { version = "^0.15.2", optional = true }
[tool.poetry.extras]
cli = ["typer"]
[tool.poetry.group.lint.dependencies]
ruff = "^0.11.4"
[tool.poetry.group.test.dependencies]
pytest = "^8.3.5"
pytest-randomly = "^3.16.0"
[tool.poetry.group.dev.dependencies]
fastapi = "^0.115.12"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_functions = ["test_*"]
[tool.poetry.scripts]
turbodl = "turbodl.cli.__main__:app"