-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
61 lines (56 loc) · 1.38 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
[tool.poetry]
name = "questionnaire-builder-backend"
version = "0.1.0"
description = ""
authors = ["deep-dev <dev@thedeep.io>"]
license = "GNU Affero General Public License v3.0"
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "^3.11.3"
requests = "*"
django-environ = "*"
Django = ">=4.2,<4.3"
drf-writable-nested = "*"
djangorestframework = "*"
psycopg2-binary = "==2.9.6"
django-cors-headers = "*"
django-premailer = "*"
django-storages = "*"
django-admin-autocomplete-filter = "*"
strawberry-graphql = "^0.177"
strawberry-django-plus = "*"
sentry-sdk = "*"
ipython = "*"
factory-boy = "*"
user-agents = "*"
django-ses = "3"
celery = {extras = ["redis"], version = "^5.3.4"}
django-redis = "^5.3.0"
pandas = "2.0.3"
pyxform = "^1.12.1"
openpyxl = "*"
celery-types = "*"
django-prettyjson = "*"
uwsgi = "*"
aws-sns-message-validator = "*"
[tool.poetry.dev-dependencies]
pytest = "*"
pytest-profiling = "*"
pytest-ordering = "*"
pytest-django = "*"
django-stubs = { version = "*", allow-prereleases = true }
djangorestframework-stubs = { version = "*", allow-prereleases = true }
[tool.pyright]
exclude = [
"**/__pycache__",
"**/snap_test_*.py",
]
reportMissingImports = true
reportMissingTypeStubs = false
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "main.settings"
log_cli = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"