-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
33 lines (29 loc) · 850 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
[tool.poetry]
name = "queue-manager"
version = "0.1.0"
description = "A pet project to practice developing a multi-user web application from scratch."
authors = ["Andrey <volk000@gmail.com>"]
readme = "README.md"
packages = [{include = "queue_manager"}]
repository = "https://github.com/Andrey-Volkovitskiy/queue-manager"
[tool.poetry.dependencies]
python = "^3.8.1"
Django = "^4.2.4"
python-dotenv = "^1.0.0"
dj-database-url = "^2.1.0"
gunicorn = "^21.2.0"
psycopg2-binary = "^2.9.7"
rollbar = "^0.16.3"
django-bootstrap5 = "^23.3"
django-debug-toolbar = "^4.2.0"
whitenoise = "^6.6.0"
django-tz-detect = "^0.4.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
pytest-cov = "^4.1.0"
flake8 = "^6.1.0"
pytest-django = "^4.5.2"
beautifulsoup4 = "^4.12.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"