forked from ThePornDatabase/namer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
59 lines (52 loc) · 1.38 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
[tool.poetry]
name = "namer"
version = "1.9.10"
description = "A namer of video files based on metadata from the porndb."
readme = "readme.rst"
authors = ["4c0d3r <[email protected]>"]
include = ["**/web/public/assets/**/*", "**/web/templates/**/*", "**/namer.cfg.default"]
[tool.poetry.dependencies]
python = ">=3.8,<3.12"
rapidfuzz = "^2.0.5"
watchdog = "^2.1.6"
pathvalidate = "^2.5.0"
requests = "^2.27.1"
mutagen = "^1.45.1"
schedule = "^1.1.0"
loguru = "^0.6.0"
Unidecode = "^1.3.4"
flask = "^2.2.0"
jinja2 = "^3.1.2"
waitress = "^2.1.1"
Flask-Compress = "^1.12"
Pillow = "^9.1.1"
requests-cache = "^0.9.4"
ffmpeg-python = "^0.2.0"
ImageHash = "^4.2.1"
jsonpickle = "^2.2.0"
ConfigUpdater = "^3.1.1"
[tool.poetry.dev-dependencies]
pytest = "^7.0.0"
pytest-cov = "^4.0.0"
coverage = "^6.3.2"
flakeheaven = "^3.0.0"
selenium = "^4.2.0"
webdriver-manager = "^3.7.0"
assertpy = "^1.1"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
[tool.flakeheaven]
exclude = [".git", "__pycache__", "docs/source/conf.py", "old", "build", "dist", "*migrations*", "init"]
format = "colored"
show_source = false
max_line_length = 150
[tool.flakeheaven.plugins]
mccabe = ["+*"]
pycodestyle = ["+*", "-E501", "-E722"]
pyflakes = ["+*"]
pylint = ["+*", "-C0301", "-I1101"]
[tool.pylint.'MASTER']
max-line-length = 150
[build-system]
requires = ["poetry-core>=1.2.0"]
build-backend = "poetry.core.masonry.api"