-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
93 lines (84 loc) · 2.23 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[project]
name = "QuickBBS"
version = "3.0.0"
authors = [
{ name="Benjamin Schollnick", email="[email protected]" },
]
description = "Experimental Gallery / File Browser"
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/bschollnick/quickbbs"
Issues = "https://github.com/bschollnick/quickBBS/issues"
[black]
max-line-length = 120
[tool.pyright]
exclude = ["**/gallery/**", "**/albums/**"]
[tool.pylance]
exclude = ["**/gallery/**", "**/albums/**"]
[tool.mypy]
python_version = "3.13"
cache_dir = "/volumes/C-8tb/gallery/virtualenv"
explicit_package_bases = true
pretty = true
color_output = true
ignore_missing_imports = true
plugins = ["mypy_django_plugin.main"]
[tool.django-stubs]
django_settings_module = "quickbbs.settings"
[tool.poetry]
name = "Quickbbs"
version = "3.0.0"
description = "Experimental Gallery / File Browser"
authors = ["Benjamin Schollnick <[email protected]>"]
readme = "README.md"
packages = []
[tool.isort]
profile = "black"
[tool.poetry.dependencies]
python = "^3.12"
aiofile = "^3.8.8"
aiopath = "^0.7.7"
django = "^5.1.3"
pymupdf = "^1.24.14"
django-icons = "^24.4"
django-htmx = "^1.21.0"
humanize = "^4.11.0"
django-jinja = "^2.11.0"
django-grappelli = "^4.0.1"
django-debug-toolbar = "^4.4.6"
djangorestframework = "^3.15.2"
django-filter = "^24.3"
django-user-agents = "^0.4.0"
django-allauth = "^65.2.0"
watchdog = "^6.0.0"
django-extensions = "^3.2.3"
django-ranged-fileresponse = {git = "https://github.com/devmonkey22/django-ranged-fileresponse"}
pyav = "^14.0.1"
pillow = "^11.0.0"
markdown2 = "^2.5.1"
numpy = "^2.1.3"
django-thread = {git = "https://github.com/ross/django-thread"}
imagehash = "^4.3.1"
xattr = "^1.1.0"
dhash = "^1.4"
pathvalidate = "^3.2.1"
black = "^24.10.0"
isort = "^5.13.2"
mypy = "^1.13.0"
natsort = "^8.4.0"
psycopg = {extras = ["c"], version = "^3.2.3"}
psycopg-pool = "^3.2.4"
certifi = "^2024.8.30"
gunicorn = "^23.0.0"
pip = "^24.3.1"
django-stubs = {extras = ["compatible-mypy"], version = "^5.1.1"}
types-pyyaml = "^6.0.12.20240917"
uvicorn = "^0.34.0"
pylint-django = "^2.6.1"
hypercorn = "^0.17.3"