-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
73 lines (66 loc) · 1.68 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
[tool.poetry]
name = "metropolis"
version = "2.3"
description = "William Lyon Mackenzie's online hub for announcements, calendar events, clubs, and timetables"
license = "AGPLv3"
authors = ["nyiyui <[email protected]>", "Jason Cameron <[email protected]>"]
readme = "README.md"
repository = "https://github.com/wlmac/metropolis"
documentation = "https://docs.maclyonsden.com"
[tool.poetry.dependencies]
python = "~3.12"
asgiref = "^3.7.2"
bleach = "~4"
certifi = "*"
cffi = "*"
charset-normalizer = "*"
cryptography = "^43.0.1"
defusedxml = "^0.7.1"
Django = "^5.0.8"
django-allauth = "~0.61"
django-cors-headers = "^3.10.0"
django-oauth-toolkit = "^3.0.1"
django-pwa = "*"
django-redis = "^5.0.0"
django-select2 = "*"
djangorestframework = "*"
djangorestframework-simplejwt = "*"
Markdown = ">3.0.0"
martor = "*"
oauthlib = "^3.2.2"
pillow = "^10.2.0"
pytz = "*"
redis = "^4.4.4"
requests = "*"
requests-oauthlib = "*"
urllib3 = "*"
django_ical = "~1.8"
celery = "*"
exponent_server_sdk = "*"
django-hijack = "*"
drf-spectacular = "0.27.0"
memoization = "^0.4.0"
psycopg = [
{ version = "~3.1", markers = "sys_platform == 'linux'" },
{ extras = ["binary"], version = "~3.1", markers = "sys_platform != 'linux'" },
]
gunicorn = "^22.0.0"
sentry-sdk = { extras = ["django", "celery"], version = "^2.8.0" }
[tool.poetry.group.dev.dependencies]
django-stubs = "*"
ruff = "^0.6.3"
isort = "*"
[tool.ruff]
exclude = [
"core/migrations",
".gitignore"
]
[tool.ruff.format]
docstring-code-format = true
[tool.mypy]
plugins = ["mypy_django_plugin.main"]
[tool.django-stubs]
django_settings_module = "metropolis.settings"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"