-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
130 lines (114 loc) · 2.79 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
120
121
122
123
124
125
126
127
128
129
130
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "django-payments-chile"
version = "2024.12.5"
description = "Pasarelas de pago chilenas para django-payments"
readme = "README.md"
authors = [{ "name" = "Mario Hernandez", "email" = "[email protected]" }]
license = { text = "MIT License" }
requires-python = ">=3.9,<4.0"
keywords = [
"flow",
"khipu",
"kushki",
"transbank",
"payku",
"pagofacil",
"webpay",
"onepay",
"pagos",
"django",
"payment",
"django-payments",
]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Topic :: Software Development :: Libraries :: Python Modules",
"Framework :: Django",
"Operating System :: OS Independent",
]
dependencies = ["django-payments>=2.0, <4.0", "requests"]
[project.urls]
Homepage = "https://mariofix.github.io/django-payments-chile/"
Repository = "https://github.com/mariofix/django-payments-chile"
Documentation = "https://mariofix.github.io/django-payments-chile/"
[project.optional-dependencies]
dev = [
"pre-commit",
"black",
"isort",
"coverage",
"pytest",
"faker",
"mkdocs",
"mkdocs-material",
"mkdocstrings[python]",
"mkdocs-git-revision-date-localized-plugin",
"pillow",
"cairosvg",
"lxml",
"pytest-cov",
"pytest-django",
"pytest-mock",
"dj-database-url",
"factory-boy",
"tox",
"tox-gh-actions",
]
[tool.setuptools.packages.find]
include = ["django_payments_chile", "tests"]
[tool.black]
line-length = 119
target-version = ["py39"]
[tool.isort]
profile = "black"
line_length = 119
multi_line_output = 5
py_version = 39
src_paths = ["django_payments_chile", "tests"]
[tool.coverage.report]
exclude_lines = ["if TYPE_CHECKING:", "# noqa", "# nosec"]
[tool.django-stubs]
django_settings_module = "tests.django_settings"
[tool.pytest.ini_options]
addopts = [
"--cov=django_payments_chile",
"--cov-report=term-missing:skip-covered",
"--no-cov-on-fail",
"--color=yes",
]
testpaths = "tests"
DJANGO_SETTINGS_MODULE = "tests.django_settings"
pythonpath = "."
[dependency-groups]
dev = [
"pre-commit",
"black",
"isort",
"coverage",
"pytest",
"faker",
"mkdocs",
"mkdocs-material",
"mkdocstrings[python]",
"mkdocs-git-revision-date-localized-plugin",
"pillow",
"cairosvg",
"lxml",
"pytest-cov",
"pytest-django",
"pytest-mock",
"dj-database-url",
"factory-boy",
"tox",
"tox-gh-actions",
]