-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
49 lines (44 loc) · 1.17 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
[tool.poetry]
name = "baca2"
version = "1.3.0-beta"
description = "Bachelor project: automated programming task checking and scoring system BaCa2"
authors = ["BaCa2 Team"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
django = "^5.0.0"
psycopg2-binary = "^2.9.5"
django-extensions = "^3.2.1"
django-dbbackup = "^4.0.2"
pyyaml = "^6.0"
sphinx = "^7.2.6"
baca2-package-manager = "^0.3.2"
urllib3 = "^2.0.0"
django-widget-tweaks = "^1.4.12"
gunicorn = "^21.2.0"
python-dotenv = "^1.0.0"
django-cors-headers = "^4.3.1"
usosapi = { path = "lib/usosapi-python" }
apscheduler = "^3.10.4"
coverage = "^7.3.2"
sphinx-rtd-theme = "^2.0.0"
parameterized = "^0.9.0"
requests = "^2.31.0"
mozilla-django-oidc = "^4.0.0"
colorlog = "^6.8.2"
django-split-settings = "^1.2.0"
markdown = "^3.5.2"
python-markdown-math = "^0.8"
django-bootstrap-icons = "^0.8.7"
whitenoise = "^6.6.0"
htbuilder = "^0.6.2"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.6.0"
[tool.isort]
multi_line_output = 3
line_length = 100
known_django="django"
sections="FUTURE,STDLIB,DJANGO,FIRSTPARTY,THIRDPARTY,LOCALFOLDER"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"