-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
43 lines (37 loc) · 893 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 = "simple-podcast-dl"
version = "1.7"
description = "Simple podcast downloader (podcatcher)"
authors = ["Kiss György <[email protected]>"]
repository = "https://github.com/kissgyorgy/simple-podcast-dl"
readme = "README.md"
license = "MIT"
packages = [
{ include = "podcast_dl" },
]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords=["podcasts"]
[tool.poetry.dependencies]
python = ">=3.6"
attrs = "^18.2"
click = "^7.0"
python-slugify = "^1.2"
lxml = "^4.2"
aiodns = "^1.1"
httpx = "^0.18.2"
[tool.poetry.dev-dependencies]
pytest = "^3.9"
pytest-sugar = "^0.9.1"
black = "^18.3-alpha.0"
[tool.poetry.scripts]
podcast-dl = "podcast_dl.cli:main"
[build-system]
requires = ["poetry>=0.12", "setuptools", "wheel"]
build-backend = "poetry.masonry.api"
[tool.pyright]
ignore = [
"podcast_dl/podcasts.py",
]