-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
46 lines (40 loc) · 1.14 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
[tool.poetry]
name = "spbm"
version = "0.1.0"
description = "The Student Personnel Booking Manager"
authors = ["Thor K. H. <thor@roht.no>"]
[tool.poetry.urls]
repository = "https://github.com/SPF-UiO/spbm"
"Bug Tracker" = "https://github.com/SPF-UiO/spbm/issues"
[tool.poetry.dependencies]
python = ">=3.6,<3.10"
Django = "~2.2.28"
django-debug-toolbar = "^1.11.1"
psycopg2 = {version = "~2.7.5", optional = true}
django-jinja = "~2.4"
jinja2 = "~2.11"
puente = "~0.5"
markupsafe = "^1.1"
pytz = "^2018.04"
django-localflavor = "~2.1"
django-widget-tweaks = "~1.4.2"
django-extra-views = "~0.10.0"
python-dateutil = "^2.7.3"
typing = "^3.6.6"
gunicorn = "^20.0.4"
meinheld = "^1.0.1"
uwsgi = {version = "^2.0.15", optional = true}
inotify = {version = "^0.2.10", optional = true}
mysqlclient = {version = "^1.4.6", optional = true}
[tool.poetry.extras]
uwsgi = ["uwsgi"]
pgsql = ["psycopg2"]
mariadb = ["mysqlclient"]
[tool.poetry.dev-dependencies]
taskipy = "^1.1.3"
[tool.taskipy.tasks]
dev = "SPBM_DEBUG=1 python -Wa ./manage.py runserver"
test = "python -Wa ./manage.py test"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"