-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (33 loc) · 938 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
[tool.poetry]
name = "django-vue-experiments"
version = "0.1.0"
description = ""
authors = ["Niicck <[email protected]>"]
readme = "README.md"
packages = [{include = "django_vue_experiments"}]
[tool.poetry.dependencies]
python = ">=3.11.5"
django = "^4.2.7"
django-stubs-ext = "^4.2.2"
django-widget-tweaks = "^1.4.12"
dj-database-url = "^2.1.0"
python-decouple = "^3.8"
gunicorn = "^21.2.0"
django-extensions = "^3.2.1"
psycopg2 = "^2.9.7"
ipython = "^8.4"
whitenoise = {extras = ["brotli"], version = "^6.5.0"}
django-csp = "^3.7"
django-vite = "^3.0.2"
django-cors-headers = "^4.3.1"
[tool.poetry.group.dev.dependencies]
debugpy = "^1.6.5"
[tool.poetry.group.test.dependencies]
pytest = "^7.2.0"
pytest-django = "^4.5"
factory-boy = "^3.2.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE="django_vue_experiments.settings"