-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
67 lines (62 loc) · 1.39 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
[project]
name = "unicef-security"
version = "1.6.4"
description = "Provides Basic UNICEF User model and integration with Azure"
readme = "README.rst"
license = {text = "Apache-2.0 OR MIT"}
authors = [
{ name = "UNICEF", email = "[email protected]" },
]
classifiers = [
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.1",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"celery",
"cryptography",
"django",
"django-admin-extra-buttons",
"django-constance",
"django-countries",
"django-picklefield",
"PyJWT",
"requests",
"social-auth-app-django",
]
[tool.uv]
dev-dependencies = [
"django_regex",
"django-webtest",
"factory-boy",
"flake8",
"httpretty",
"isort",
"mock",
"pytest",
"pytest-cov",
"pytest-django",
"pytest-echo",
"pytest-factoryboy",
"pre-commit",
"requests-mock",
"responses",
"tox",
"unittest2",
"vcrpy",
]
[project.urls]
Homepage = "https://github.com/unicef/unicef-security"
[uv]
package = true
[tool.nitpick]
style = [
"github://unicef/hope-code-conventions@main/django/django.toml"
]
cache = "1 day"