-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
119 lines (117 loc) · 2.61 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
[tool.django-stubs]
django_settings_module = "hope_payment_gateway.config.settings"
[tool.uv]
package = true
dev-dependencies = [
"argh",
"cairosvg",
"django-regex",
"django-webtest",
"drf-api-checker",
"factory-boy",
"faker",
"freezegun",
"graphene-stubs",
"ipdb",
"markupsafe",
"mdx-gh-links",
"mike",
"mkdocs",
"mkdocs-alias-plugin",
"mkdocs-autolinks-plugin",
"mkdocs-awesome-pages-plugin",
"mkdocs-click",
"mkdocs-embed-external-markdown",
"mkdocs-ezglossary-plugin",
"mkdocs-ezlinks-plugin",
"mkdocs-gen-files",
"mkdocs-get-deps",
"mkdocs-gitsnippet-plugin",
"mkdocs-link-marker",
"mkdocs-include-markdown-plugin",
"mkdocs-macros-plugin",
"mkdocs-material",
"mkdocs-panzoom-plugin",
"mkdocs-pdf-export-plugin",
"mkdocs-simple-hooks",
"mkdocstrings[python]",
"pymdown-extensions",
"openpyxl-stubs",
"parameterized",
"parso",
"pre-commit",
"pytest",
"pytest-cov",
"pytest-django",
"pytest-echo",
"pytest-factoryboy",
"pytest-xdist",
"requests-mock",
"responses",
"types-freezegun",
"types-requests",
"types-python-dateutil",
"types-pytz",
"types-redis",
"unittest-xml-reporting",
"watchdog",
]
[project]
authors = [
{name = "ddinicola"},
{name = "Domenico DiNicola", email = "dom.dinicola@gmail.com"},
]
requires-python = ">=3.13"
dependencies = [
"Django",
"celery[redis]",
"djangorestframework",
"djangorestframework-xml",
"django-admin-extra-buttons",
"django-admin-sync",
"django-adminactions",
"django-adminfilters",
"django-advanced-filters",
"django-celery-beat",
"django-celery-boost",
"django-celery-results",
"django-concurrency",
"django-constance",
"django-cors-headers",
"django-csp",
"django-debug-toolbar",
"django-environ",
"django-extensions",
"django-filter",
"django-import-export",
"django-jsoneditor",
"django-model-utils",
"django-mptt",
"django-smart-admin",
"django-smart-env",
"django-storages[azure]",
"django-strategy-field",
"django-viewflow",
"dj-static",
"drf-spectacular[sidecar]",
"flower",
"gunicorn",
"newrelic",
"natural-keys",
"paramiko",
"phonenumbers",
"psycopg[binary]",
"sentry-sdk",
"social-auth-app-django",
"social-auth-core",
"swapper",
"tablib",
"unicef-security",
"wheel",
"zeep",
]
name = "hope_payment_gateway"
version = "0.1"
description = "HOPE integration with FSPs"
readme = "README.md"
license = {text = "MIT"}