-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
55 lines (49 loc) · 1.36 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
[tool.poetry]
name = "platform-back"
version = "1.0.0"
description = ""
authors = ["BIMData Team <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.9"
bimdata-api-client = "^10.9.1"
django = {extras = ["argon2"], version = "^4.2"}
django-cors-headers = "^3.7.0"
django-environ = "^0.10.0"
django-health-check = "^3.16.3"
django-filter = "^2.4.0"
django-grappelli = "^3.0.4"
django-postgres-extra = "^2.0.2"
django-replicated = {git = "https://github.com/bimdata/django_replicated.git"}
django-split-settings = "^1.0.1"
djangorestframework = "^3.15.2"
drf-oidc-auth = "^3.0.0"
drf-yasg = "^1.20.0"
fluent-logger = "^0.10.0"
gunicorn = "^22.0.0"
inflection = "^0.5.1"
parameterized = "^0.8.1"
psycopg2 = "^2.9.3"
python-dotenv = "^0.17.0"
requests = "^2.32.0"
whitenoise = "^5.3.0"
django-cron = "^0.6.0"
django-json-widget = {git = "https://github.com/jmrivas86/django-json-widget.git"}
coreapi = "^2.3.3"
[tool.poetry.group.deploy]
optional = true
[tool.poetry.group.deploy.dependencies]
gunicorn = "^22.0.0"
uvicorn = "^0.20.0"
[tool.poetry.group.dev.dependencies]
black = "^24.3.0"
django-debug-toolbar = "^3.2.1"
flake8 = "^5.0.4"
pre-commit = "^3.7.1"
pyflakes = "^2.5.0"
reorder-python-imports = "^3.8.2"
pycodestyle = "^2.9.1"
[tool.poetry.group.test.dependencies]
pytest-django = "^4.2"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"