-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
68 lines (64 loc) · 1.66 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
[tool.poetry]
name = "glitchtip-backend"
version = "0.1.0"
description = "Django backend that powers GlitchTip, an open source reimplementation of Sentry"
authors = ["David Burke"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.8"
Django = "~4.1.0"
djangorestframework = "^3.12.1"
django-allauth = "~0.51.0"
django-cors-headers = "^3.2.0"
django-environ = "^0.9.0"
django-extensions = "^3.0.2"
django-organizations = "~2.1.0"
django-storages = {extras = ["boto3", "azure", "google"], version = "^1.12.3"}
drf-nested-routers = "^0.93.3"
uWSGI = "^2.0.18"
whitenoise = "^6.0.0"
sentry-sdk = "^1.0.0"
django-filter = "^22.1"
celery = {version = "~5.2.1", extras = ["redis"]}
django-celery-results = "^2.0.0"
django-csp = "^3.6"
dj-stripe = "~2.7.2"
django-anymail = "^8.1"
drf-yasg = "^1.17.1"
dj-rest-auth = "~2.2.1"
user-agents = "^2.1"
django-ipware = "^4.0.0"
anonymizeip = "^1.0.0"
symbolic = "^10.0.0"
django-rest-mfa = "^1.0.0"
aiohttp = "^3.7.4"
google-cloud-logging = "^3.0.0"
django-bitfield = "^2.2.0"
django-prometheus = "^2.2.0"
django-sql-utils = "^0.6.1"
django-redis = {extras = ["hiredis"], version = "^5.2.0"}
psycopg2 = "^2.9.3"
uwsgi-chunked = "^0.1.8"
django-import-export = "^3.0.0"
[tool.poetry.dev-dependencies]
black = "^22.1.0"
ipdb = "^0.13.2"
pylint = "^2.4.4"
pylint-django = "^2.0.13"
locust = "^2.10.1"
freezegun = "^1.1.0"
rope = "^1.3.0"
model_bakery = "^1.1.1"
tblib = "^1.7.0"
mypy = "^0.982"
django-debug-toolbar = "^3.2"
django-stubs = "^1.9.0"
django-sslserver = "^0.22"
aioresponses = "^0.7.2"
isort = "^5.9.3"
requests-mock = "^1.9.3"
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"