-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
64 lines (57 loc) · 1.66 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "django-payments-mollie"
description = "Mollie integration for django-payments"
readme = "README.md"
requires-python = ">=3.7"
license = { file = "LICENSE.txt" }
keywords = []
authors = [
{ name = "Four Digits", email = "[email protected]" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = [
"django-payments",
"mollie-api-python >=3.1.0",
]
dynamic = ["version"]
[project.optional-dependencies]
dev = [
"flit",
]
test = [
"pytest",
"pytest-cov",
"pytest-django",
"pytest-mock",
"dj_database_url",
"factory_boy",
]
[project.urls]
Documentation = "https://github.com/fourdigits/django-payments-mollie#readme"
Issues = "https://github.com/fourdigits/django-payments-mollie/issues"
Source = "https://github.com/fourdigits/django-payments-mollie"
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "tests.django_settings"
addopts = "--cov=django_payments_mollie/ --cov-branch --cov-report=term-missing --cov-report=xml"
[tool.isort]
profile = "black"
src_paths = ["django_payments_mollie", "tests", "sandbox"]
[tool.mypy]
strict = true
[[tool.mypy.overrides]]
# Parts of django-payments are typed, but no py.typed marker
module = "payments.*"
ignore_missing_imports = true