forked from bablokb/mtv_cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (33 loc) · 887 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
[tool.poetry]
name = "mtv-cli"
version = "0.3.0"
description = "MediathekView für die Kommandozeile"
authors = ["Max Görner <[email protected]>"]
license = "GPL-3.0-only"
[tool.poetry.dependencies]
python = "^3.7.3"
loguru = "^0.5.3"
ijson = "^3.1.4"
pydantic = "^1.8.2"
pick = {git = "https://github.com/MaxG87/pick", rev = "ebdcfdbf8bb27118ad6f8a34cccfbd7271357623"}
requests = "^2.26.0"
typer = "^0.4.0"
[tool.poetry.dev-dependencies]
ipython = "^7.29.0"
mypy = "^0.910"
black = "^21.10b0"
isort = "^5.10.1"
flake8 = "^4.0.1"
pynvim = "^0.4.3"
pdbpp = "^0.10.3"
jedi = "^0.18.0"
pytest = "^6.2.5"
pytest-cov = "^3.0.0"
hypothesis = "^6.24.2"
types-requests = "^2.26.0"
[tool.poetry.scripts]
mtv-cli = "mtv_cli.cli:main"
mtv-cli-webserver = "mtv_cli.webserver:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"