-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
44 lines (38 loc) · 1.05 KB
/
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
44
[tool.poetry]
name = "subclean"
version = "0.5.0"
description = "Simple CLI tool to instantly enhance your movie & TV show subtitles."
authors = ["disrupted <[email protected]>"]
license = "GPL-3.0"
readme = "README.md"
homepage = "https://github.com/disrupted/subclean"
repository = "https://github.com/disrupted/subclean"
keywords = ["subtitle", "cli", "media", "plex"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Environment :: Console",
]
include = [
"LICENSE",
]
[tool.poetry.urls]
"Issues" = "https://github.com/disrupted/subclean/issues"
[tool.poetry.scripts]
subclean = "subclean.subclean:main"
[tool.poetry.dependencies]
python = "^3.9"
loguru = ">=0.6,<0.8"
[tool.poetry.group.dev.dependencies]
pytest = ">=7.1.3,<9.0.0"
flake8 = ">=5.0.4,<8.0.0"
black = ">=22.10,<25.0"
pre-commit = ">=2.20,<4.0"
mypy = ">=0.982,<1.10"
isort = "^5.10.1"
autoflake = ">=1.7.6,<3.0.0"
[tool.pyright]
include = ["subclean", "tests"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"