-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (29 loc) · 874 Bytes
/
pyproject.toml
File metadata and controls
32 lines (29 loc) · 874 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 = "django-indexer"
version = "0.1.0"
description = "Potlock indexer built using Django & NEAR Data Lake Framework"
authors = ["Lachlan Glen <54282009+lachlanglen@users.noreply.github.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
django = "^5.0.4"
psycopg2-binary = "^2.9.9"
near-lake-framework = "^0.0.7"
celery = "^5.3.6"
redis = { extras = ["hiredis"], version = "^5.0.3" }
requests = "^2.31.0"
djangorestframework = "^3.15.1"
django-cachalot = "^2.6.2"
django-redis = "^5.4.0"
gunicorn = "^22.0.0"
sentry-sdk = { extras = ["django"], version = "^1.45.0" }
watchtower = "^3.1.0"
django-cors-headers = "^4.3.1"
drf-spectacular = "^0.27.2"
django-extensions = "^3.2.3"
psutil = "^6.0.0"
[tool.poetry.group.dev.dependencies]
black = "^24.3.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"