-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (30 loc) · 878 Bytes
/
pyproject.toml
File metadata and controls
34 lines (30 loc) · 878 Bytes
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
[project]
name = "streamget"
version = "4.0.9"
description = "A Multi-Platform Live Stream Parser Library."
authors = [{ name = "Hmily" }]
license = {text = "MIT"}
readme = "README.md"
url='https://github.com/ihmily/streamget'
keywords = ["live", "stream"]
requires-python = ">=3.10,<4.0"
dependencies = [
"requests>=2.31.0",
"loguru>=0.7.3",
"pycryptodome>=3.20.0",
"distro>=1.9.0",
"tqdm>=4.67.1",
"httpx[http2]>=0.28.1",
"PyExecJS>=1.5.1",
"deprecated>=1.2.18"
]
[project.urls]
Changelog = "https://github.com/ihmily/streamget/blob/main/CHANGELOG.md"
Documentation = "https://streamget.readthedocs.io"
Homepage = "https://github.com/ihmily/streamget"
Source = "https://github.com/ihmily/streamget"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[project.scripts]
streamget = "streamget.cli:main"