-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (28 loc) · 806 Bytes
/
pyproject.toml
File metadata and controls
32 lines (28 loc) · 806 Bytes
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
[tool.poetry]
name = "theatre-re-api"
version = "0.1.0"
description = "Cinema reservation API for Cinépolis Natal."
authors = ["Vinicius Fer <vinicius@example.com>"]
readme = "requirements.md"
package-mode = false
[tool.poetry.dependencies]
python = "^3.12"
django = "^5.1.6"
djangorestframework = "^3.15.2"
djangorestframework-simplejwt = "^5.5.0"
psycopg = {version = "^3.2.6", extras = ["binary"]}
redis = "^5.2.1"
drf-spectacular = "^0.28.0"
django-environ = "^0.12.0"
gunicorn = "^23.0.0"
celery = "^5.4.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.5"
pytest-django = "^4.10.0"
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "config.settings"
pythonpath = ["."]
testpaths = ["tests"]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"