-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
49 lines (43 loc) · 1.16 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
[tool.streamseeker]
name = "streamseeker"
version = "0.1.5"
authors = [
{ name="Dennis Fiedler", email="[email protected]" },
]
description = "Stream download helper to download files from the internet"
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[metadata]
version = "0.1.5"
[project.urls]
Homepage = "https://github.com/uniprank/streamseeker"
Issues = "https://github.com/uniprank/streamseeker/issues"
[tool.poetry]
name = "streamseeker"
version = "0.1.5"
description = "Helping package to download files from different streaming platforms"
authors = ["Dennis Fiedler <[email protected]>"]
license = "MIT"
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "^3.11"
beautifulsoup4 = "^4.12.2"
invoke = "^2.2.0"
requests = "^2.32.2"
selenium = "^4.15.2"
tqdm = "4.66.3"
tomli = "^2.0.2"
cleo = "^2.1.0"
numpy = "^2.1.2"
packaging = "^24.1"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"