-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
81 lines (78 loc) · 1.67 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
69
70
71
72
73
74
75
76
77
78
79
80
81
[project]
authors = [
{name = "ddinicola"},
{name = "Domenico DiNicola", email = "[email protected]"},
]
requires-python = ">=3.13"
dependencies = [
"bleach[css]",
"celery",
"dj-database-url",
"dj-static",
"Django",
"django-adminactions",
"django-anymail",
"django-celery-beat",
"django-celery-email",
"django-celery-results",
"django-cors-headers",
"django-debug-toolbar",
"django-environ",
"django-extensions",
"django-filter",
"django-impersonate",
"django-picklefield",
"django-redis-cache",
"djangorestframework",
"djangorestframework-csv",
"djangorestframework-simplejwt",
"djangorestframework-recursive",
"djangorestframework-xml",
"django-rest-framework-social-oauth2",
"gunicorn",
"newrelic",
"psycopg2-binary",
"sentry-sdk",
"requests",
"sharepoint-rest-api",
"Office365-REST-Python-Client",
"social-auth-app-django",
"social-auth-core[azuread]",
"unicef-djangolib",
"unicef-notification",
"unicef-realm",
"unicef-security",
"unicef-vision",
"uwsgi",
]
name = "donor_reporting_portal"
version = "3.0"
description = "Donor Reporting Portal"
readme = "README.md"
license = {text = "MIT"}
[tool.uv]
package = true
dev-dependencies = [
"coverage",
"django-regex",
"django-webtest",
"drf-api-checker",
"factory-boy",
"freezegun",
"ipython",
"mock",
"pdbpp",
"pre_commit",
"pytest",
"pytest-coverage",
"pytest-django",
"pytest-echo",
"pytest-env",
"pytest-ignore-flaky",
"pytest-pythonpath",
"responses",
"ruff",
"sphinx",
"vcrpy",
"webtest",
]