forked from gabrys/napi.py
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (27 loc) · 798 Bytes
/
Copy pathpyproject.toml
File metadata and controls
32 lines (27 loc) · 798 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
[tool.poetry]
name = "napi-py"
version = "1.2.4"
description = "CLI tool for downloading subtitles from napiprojekt.pl"
authors = ["emkor93 <emkor93@gmail.com>"]
license = "GPL-3.0 License"
readme = "README.md"
homepage = "https://github.com/emkor/napi-py"
repository = "https://github.com/emkor/napi-py"
keywords = ["napiprojekt", "subs", "subtitles", "movie", "film"]
packages = [{ include = "napi" }]
[tool.poetry.dependencies]
python = "^3.7"
pylzma = "^0.5.0"
chardet = "^5.2.0"
[tool.poetry.dev-dependencies]
mypy = "^1.4.0"
pytest = "^7.4.4"
black = "^22.3.0"
[tool.poetry.scripts]
napi-py = 'napi.main:cli_main'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
target-version = ['py37', 'py38', 'py39', 'py310']