-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
51 lines (43 loc) · 1.09 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
[tool.poetry]
name = "jizzarr"
version = "0.17"
description = "A collection tracker that integrates with TPDB and Stash."
readme = "README.md"
authors = ["Serechops"]
include = ["**/static/**/*", "**/templates/**/*", "**/instance/**/*"]
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
Flask = "^3.0.0"
Flask-Cors = "^3.0.10"
Flask-SQLAlchemy = "^3.1.1"
mutagen = "^1.45.1"
requests = "^2.26.0"
pystray = "^0.19"
Pillow = "^10.4.0"
moviepy = "^1.0.3"
watchdog = "^5.0"
fuzzywuzzy = { extras = ["speedup"], version = "^0.18.0" }
aiohttp = "^3.10"
asyncio = "^3.4.3"
ffmpeg-python = "^0.2"
[tool.poetry.group.dev.dependencies]
ruff = "^0.5"
[tool.ruff]
exclude = [".git", "__pycache__", "build", "dist", "node_modules"]
line-length = 320
indent-width = 4
target-version = "py39"
[tool.ruff.format]
quote-style = "single"
indent-style = "space"
line-ending = "auto"
[tool.ruff.lint]
select = ["E", "F"]
ignore = ["E501", "E722"]
[tool.poetry.build]
generate-setup-file = true
[tool.poetry.scripts]
jizzarr = "jizzarr.app:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"