-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpyproject.toml
43 lines (39 loc) · 1000 Bytes
/
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
[tool.poetry]
name = "hls-get"
version = "0.1.0"
description = "An asynchronous terminal-based hls video stream (m3u8) downloader & combiner, with AES-128 decryption support."
authors = ["SoulMelody"]
license = "GPL-3.0"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
]
readme = "README.rst"
[tool.poetry.dependencies]
python = ">=3.6"
aiofiles = "*"
aiohttp = "*"
av = "*"
tenacity = "*"
click = "*"
m3u8 = "*"
pycryptodome = "*"
progress = "*"
wrapt = "*"
yarl = "*"
async_timeout = "*"
cached-property = "*"
[tool.poetry.dev-dependencies]
pytest = "*"
pytest-asyncio = "*"
pytest-aiohttp = "*"
pytest-runner = "*"
[tool.poetry.scripts]
hls-get = "hls_get.cli:main"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"