-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
42 lines (36 loc) · 1017 Bytes
/
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
[tool.poetry]
package-mode = false
name = "cantus-ultimus"
[tool.poetry.dependencies]
python = "^3.12"
celery = "5.4.0"
django = "5.0.7"
django-celery-results = "2.5.1"
djangorestframework = "3.15.2"
gunicorn = "22.0.0"
lxml = "5.2.2"
markdown = "3.6"
psycopg = {extras = ["binary"], version = "^3.2.1"}
requests = "2.32.3"
solrpy = { git = "https://github.com/search5/solrpy", tag = "rel-1-0-0"}
[tool.poetry.group.debug]
optional = true
[tool.poetry.group.debug.dependencies]
django-extensions = "3.2.3"
Werkzeug = "3.0.3"
django-debug-toolbar = "^4.4.6"
debugpy = { git = "https://github.com/microsoft/debugpy", rev = "a2f80817a168e1ed6cc60b4f1c70fdb24e40bca5"}
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
black = "^24.4.2"
mypy = "^1.11.0"
pylint = "^3.2.6"
django-stubs = "^5.0.4"
pylint-django = "^2.5.5"
djangorestframework-stubs = "^3.15.0"
djlint = "^1.34.1"
types-lxml = "^2024.9.16"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"