-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpyproject.toml
71 lines (62 loc) · 2.04 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
65
66
67
68
69
70
71
[tool.poetry]
name = "PtpUploader"
version = "0.12.2"
description = "A small uploader for a mildly popular movie site"
authors = ["kannibalox <kannibalox@gmail.com>"]
packages = [
{ include = "PtpUploader", from = "src" }
]
repository = "https://github.com/kannibalox/PtpUploader"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Natural Language :: English",
"Operating System :: POSIX",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Utilities",
]
[tool.poetry.dependencies]
python = ">3.7.2,<4.0"
requests = "^2.26.0"
Django = "^3.2.19"
guessit = "^3.3.1"
pyrosimple = "^2.7.0"
dynaconf = "^3.1.7"
Unidecode = "^1.3.2"
Werkzeug = "^2.0.2"
cinemagoer = "^2023.5.1"
rarfile = "^4.0"
[tool.poetry.scripts]
PtpUploader = "PtpUploader.manage:run"
ReleaseInfoMaker = "PtpUploader.ReleaseInfoMaker:run"
[tool.poetry.group.dev.dependencies]
black = "^22.12.0"
pylint = "^2.15.9"
mypy = "^0.991"
[tool.pylint]
[tool.pylint.'MESSAGES CONTROL']
disable="locally-disabled, superfluous-parens, no-else-return, too-many-arguments,logging-not-lazy, logging-format-interpolation, too-few-public-methods, protected-access, duplicate-code, consider-using-f-string, fixme, invalid-name, line-too-long, design, missing-module-docstring, missing-class-docstring, missing-function-docstring"
[tool.isort]
profile = "black"
force_single_line = false
atomic = true
include_trailing_comma = true
lines_after_imports = 2
lines_between_types = 1
use_parentheses = true
[tool.black]
#include = '\.py$'
extend-exclude = "/migrations/"
[tool.mypy]
[[tool.mypy.overrides]]
module = ['django.*']
ignore_missing_imports = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"