forked from fnep/mtv_dl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
executable file
·40 lines (36 loc) · 926 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
[tool.poetry]
name = "mtv_dl"
version = "0.16"
description = "MediathekView Downloader"
readme = "DESCRIPTION.rst"
authors = ["Frank Epperlein <[email protected]>"]
repository = "https://github.com/efenka/mtv_dl"
license = "MIT License"
classifiers = [
"Topic :: Multimedia :: Video",
"Development Status :: 4 - Beta",
"Environment :: Console",
"License :: Public Domain",
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: MIT License",
]
[tool.poetry.dependencies]
python = "^3.6"
rfc6266 = "^0.0.4"
tzlocal = "^2.0.0"
iso8601 = "^0.1.12"
docopt = "^0.6.2"
pydash = "^4.7.6"
durationpy = ">=0.5"
PyYAML = "^5.3"
beautifulsoup4 = "^4.8.2"
typing_extensions = "^3.7.4"
rich = "^2.2.3"
[tool.poetry.dev-dependencies]
mypy = "^0.770"
twine = "^3.1.1"
[tool.poetry.scripts]
mtv_dl = 'mtv_dl:main'
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"