-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (42 loc) · 1.28 KB
/
pyproject.toml
File metadata and controls
46 lines (42 loc) · 1.28 KB
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
[build-system]
requires = ["poetry>=1.0"]
build-backend = "poetry.core.masonry.api"
[project]
name = "DDownloader"
version = "0.4.3"
description = "A downloader for DRM-protected & Non DRM-protected content."
readme = { file = "README.md", content-type = "text/markdown" }
authors = [
{ name = "ThatNotEasy", email = "apidotmy@proton.me" }
]
license = { file = "LICENSE" }
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
[tool.poetry]
name = "DDownloader"
version = "0.4.3"
description = "A downloader for DRM-protected & Non DRM-protected content."
authors = ["ThatNotEasy <apidotmy@proton.me>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/ThatNotEasy/DDownloader"
[tool.poetry.dependencies]
python = ">=3.7"
requests = ">=2.26.0"
coloredlogs = ">=15.0"
tqdm = ">=4.64.0"
colorama = ">=0.4.5"
loguru = ">=0.6.0"
pymediainfo = "^6.1.0"
yt-dlp = "^2025.10.11.232807.dev0"
[tool.poetry.scripts]
DDownloader = "DDownloader.main:main"