-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
68 lines (62 loc) · 1.87 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "lukim-gather-server"
version = "0.1.0"
description = "\"Lukim gather server\""
authors = ["Your Name <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.11"
Django = "^3.2.18"
environs = {version = "^9.4.0", extras = ["django"]}
marshmallow = "^3.14.1"
psycopg2-binary = "^2.9.3"
uvicorn = {version = "^0.25.0", optional = true, extras = ["standard"]}
gunicorn = {version = "^22.0.0", optional = true}
graphene-django = {version = "^3.0.0-beta.7", allow-prereleases = true}
django-filter = "^22.1"
django-graphql-jwt = "^0.3.4"
celery = "^5.2.3"
redis = "^4.5.4"
django-modeltranslation = "^0.17.5"
django-ordered-model = "^3.5"
django-ckeditor = "^6.2.0"
django-mptt = "^0.13.4"
django-graphql-geojson = "^0.1.4"
graphene-file-upload = "^1.3.0"
sentry-sdk = "^1.5.8"
djangorestframework = "^3.13.1"
django-admin-autocomplete-filter = "^0.7.1"
djangorestframework-gis = "^0.18"
django-cors-headers = "^3.11.0"
pillow = "^10.1.0"
graphene-django-extras = "^1.0.0"
django-admin-interface = "^0.19.0"
django-json-widget = "^1.1.1"
django-oauth-toolkit = "^2.0.0"
django-allauth = "^0.54.0"
django-vectortiles = "^0.1.0"
boto3 = "^1.24.42"
django-phonenumber-field = {version = "^6.3.0", extras = ["phonenumbers"]}
watchtower = "^3.0.0"
django-ratelimit = "^3.0.1"
django-reversion = "^5.0.3"
django-push-notifications = {version = "^3.0.0", extras = ["WP", "APNS"]}
py3-validate-email = "^1.0.5.post1"
sorl-thumbnail = "^12.9.0"
[tool.poetry.group.dev.dependencies]
black = "^22.3.0"
isort = "^5.10.1"
safety = "^2.3.5"
django-extensions = "^3.1.5"
pre-commit = "^2.16.0"
model-bakery = "^1.4.0"
werkzeug = "^3.0.1"
[tool.poetry.extras]
asgi = ["uvicorn", "gunicorn"]
[tool.black]
extend-exclude = "migrations/"
[tool.isort]
skip_glob = ["__pycache__", "**/migrations"]
profile = "black"