-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
48 lines (44 loc) · 1.12 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
[tool.poetry]
name = "shopapi"
version = "0.1.0"
description = "REST API for basic e-commerce platform"
authors = ["Aashish Chapain <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
django = "^4.1.7"
pillow = "^9.4.0"
djangorestframework = "^3.14.0"
python-dotenv = "^1.0.0"
django-phonenumber-field = "^7.0.2"
django-countries = "^7.5.1"
phonenumbers = "^8.13.7"
drf-nested-routers = "^0.93.4"
django-debug-toolbar = "^4.0.0"
django-filter = "^23.1"
djoser = "^2.1.0"
djangorestframework-simplejwt = "^5.2.2"
drf-spectacular = "^0.26.2"
stripe = "^5.4.0"
django-cors-headers = "^3.14.0"
redis = "^4.5.4"
celery = "^5.2.7"
flower = "^1.2.0"
django-redis = "^5.2.0"
psycopg = {extras = ["binary"], version = "^3.1.8"}
whitenoise = "^6.4.0"
gunicorn = "^20.1.0"
psycopg2-binary = "^2.9.6"
[tool.poetry.group.dev.dependencies]
flake8 = "^6.0.0"
black = "^23.1.0"
pytest = "^7.3.0"
pytest-django = "^4.5.2"
model-bakery = "^1.11.0"
pytest-watch = "^4.2.0"
locust = "^2.15.1"
django-silk = "^5.0.3"
pytest-cov = "^4.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"