-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
114 lines (97 loc) · 2.15 KB
/
pyproject.toml
File metadata and controls
114 lines (97 loc) · 2.15 KB
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
[project]
name = 'stancer'
description = 'Python SDK for the Stancer API'
dynamic = ['version']
requires-python = '>=3.10'
dependencies = [
'requests ~=2.32',
'typing-extensions ~=4.15',
]
authors = [
{ name = 'Stancer', email = 'floss@stancer.com' },
]
license = 'MIT'
readme = 'README.md'
keywords = [
'payments',
'payment solution',
'payment gateway',
'credit cards',
'sepa',
]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Plugins',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Topic :: Software Development :: Libraries :: Python Modules',
]
[dependency-groups]
dev = [
'bandit ~=1.8',
'mypy[reports] ~=1.17',
'pylint ~=3.3',
'pylint-gitlab ~=2.0',
'pylint-quotes ~=0.2',
'pytest ~=8.4',
'pytest-cov ~=6.2',
'pytz',
'responses ~=0.25',
'ruff ~=0.12',
'types-pytz',
'types-pexpect ~=4.9',
'types-pygments ~=2.19',
'types-pyyaml ~=6.0',
'types-requests ~=2.32',
'types-setuptools ~=80.9',
]
#REGION build
[build-system]
requires = ['hatchling']
build-backend = 'hatchling.build'
[tool.hatch.version]
path = './stancer/version.py'
#ENDREGION
#REGION ruff
[tool.ruff]
line-length = 88
indent-width = 4
[tool.ruff.format]
docstring-code-format = true
docstring-code-line-length = 20
indent-style = 'space'
quote-style = 'single'
[tool.ruff.lint.isort]
force-single-line = true
from-first = false
length-sort = false
lines-between-types = 1
no-sections = false
relative-imports-order = 'furthest-to-closest'
#ENDREGION
#REGION pytest
[tool.pytest.ini_options]
addopts = '-m "not future"'
testpaths = ['tests']
markers = ['future']
#ENDREGION
#REGION mypy
[tool.mypy]
exclude = [
'dist',
]
#ENDREGION mypy
#REGION bandit
[tool.bandit]
exclude_dirs = [
'.venv',
'tests',
]
#ENDREGION