-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
51 lines (48 loc) · 1.34 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
[tool.poetry]
name = "secateur"
version = "0.1.0"
description = ""
authors = ["Tom Eastman <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.9"
Django = "^4.0.4"
social-auth-app-django = "^5.0.0"
python-twitter = "^3.5"
celery = {version = "^5.2.6", extras = ["redis,sqs"]}
django-redis = "^5.2.0"
gunicorn = "^20.0.4"
whitenoise = "^6.0.0"
# Temporarily fetching from git till the version that's compatible with django 4.0 is released.
django-celery-beat = "^2.4.0"
dj-database-url = "^1.3.0"
django-csp = "^3.7"
django-request = "^1.6.1"
django-xff = "^1.3.0"
django-structlog = "^5.0.1"
django-bootstrap4 = "^22.1"
gevent = "*"
botocore = "*"
boto3 = "*"
tzdata = "*"
opentelemetry-sdk = "1.17.0"
opentelemetry-exporter-otlp-proto-grpc = "1.17.0"
opentelemetry-instrumentation-django = "0.38b0"
opentelemetry-instrumentation-celery = "0.38b0"
opentelemetry-instrumentation-requests = "0.38b0"
opentelemetry-instrumentation-psycopg2 = "0.38b0"
psycopg2 = "^2.9.3"
django-postgres-extra = "^2.0.5"
django-waffle = "^3.0.0"
# Pinned until a later update to otel stuff fixes compatibility?
# protobuf = "^3.20"
mem-top = "^0.2.1"
[tool.poetry.dev-dependencies]
pytest = "*"
pytest-django = "*"
pytest-cov = "*"
pytest-mypy = "*"
pytest-black = "*"
django-stubs = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"