forked from nydemeth/CyberDropDownloader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
85 lines (74 loc) · 2.08 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
81
82
83
84
85
[tool.poetry]
name = "cyberdrop-dl-patched"
version = "5.7.3.dev1"
description = "Bulk downloader for multiple file hosts"
authors = ["Jacob B <[email protected]>"]
readme = "README.md"
repository = "https://github.com/jbsparrow/CyberDropDownloader"
documentation = "https://script-ware.gitbook.io/cyberdrop-dl/"
packages = [{ include = "cyberdrop_dl" }]
include = ["CHANGELOG.md"]
[tool.poetry.dependencies]
python = ">=3.11,<3.13"
aiohttp = "^3.9.1"
inquirerpy = "^0.3.4"
platformdirs = "^4.2.2"
rich = "^13.7.0"
pyyaml = "^6.0.1"
certifi = "^2024.2.2"
beautifulsoup4 = "^4.12.2"
filedate = "^3.0"
aiosqlite = "0.17.0"
aiofiles = "0.8.0"
asyncpraw = "^7.7.1"
myjdapi = "^1.1.7"
mediafire = "^0.6.1"
mutagen = "^1.47.0"
pillow = "^10.2.0"
get-video-properties = "^0.1.1"
send2trash = "^1.8.3"
arrow = "^1.3.0"
apprise = "^1.9.0"
lz4 = "^4.3.3"
pycryptodomex = "^3.21.0"
jeepney = [{platform = "linux", version = "^0.8.0"},{platform = "bsd", version = "^0.8.0"}]
xxhash = "^3.5.0"
pyreadline3 = "^3.5.4"
pydantic = "^2.10.2"
aiolimiter = "1.1.0"
[tool.poetry.scripts]
cyberdrop-dl = "cyberdrop_dl.main:main"
[tool.poetry.group.dev.dependencies]
pre-commit = "^4.0.1"
ruff = "^0.8.0"
[tool.ruff]
line-length = 120
target-version = "py311"
exclude = ["cyberdrop_dl/dependencies/browser_cookie3/__init__.py"]
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"UP", # pyupgrade
"N", # PEP8 naming conventions
"TCH", # flake8-type-checking
"COM8", # flake8-commas linter
"RUF", # RUF specific fixes
"Q", # flake8-quotes
]
ignore = [
"N806", # Uppercase variables in functions
"E501", # Suppress line-too-long, let formatter decide
"COM812", # missing-trailing-comma
]
[tool.ruff.lint.pydocstyle]
convention = "google"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.urls]
Changelog = "https://github.com/jbsparrow/CyberDropDownloader/blob/master/CHANGELOG.md"