This repository has been archived by the owner on Oct 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
64 lines (58 loc) · 1.65 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "pynfogen"
version = "1.1.2"
description = "Scriptable MediaInfo-fed NFO Generator for Movies and TV"
license = "MIT"
authors = ["PHOENiX <rlaphoenix@pm.me>"]
readme = "README.md"
homepage = "https://github.com/rlaphoenix/pynfogen"
repository = "https://github.com/rlaphoenix/pynfogen"
documentation = "https://github.com/rlaphoenix/pynfogen"
keywords = ["python", "nfo", "generator", "scriptable"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Documentation",
"Topic :: Multimedia",
"Topic :: Multimedia :: Video",
]
include = [
{ path = "CHANGELOG.md", format = "sdist" },
{ path = "LICENSE", format = "sdist" },
]
[tool.poetry.dependencies]
python = ">=3.7,<4.0"
pymediainfo = "^6.0.1"
pyd2v = "^1.3.1"
requests = "^2.31.0"
appdirs = "^1.4.4"
click = "^8.1.7"
dunamai = "^1.19.0"
Unidecode = "^1.3.7"
langcodes = { extras = ["data"], version = "^3.3.0" }
jsonpickle = "^3.0.2"
tldextract = "^3.6.0"
click-default-group = "^1.2.4"
cinemagoer = "^2023.5.1"
[tool.poetry.dev-dependencies]
mypy = "^1.4.1"
types-requests = "^2.31.0.7"
flake8 = "^5.0.4"
isort = "^5.11.5"
pre-commit = "^2.21.0"
[tool.poetry.scripts]
nfo = "pynfogen.cli:cli"
[tool.isort]
line_length = 118 # 120-2 as I don't like imports right at the edge
[tool.mypy]
check_untyped_defs = true
disallow_incomplete_defs = true
disallow_untyped_defs = true
ignore_missing_imports = true
no_implicit_optional = true