-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
78 lines (72 loc) · 1.8 KB
/
setup.cfg
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
[metadata]
name = cardpointe-api-python-client
version = attr: cardpointe.__version__
description = Unofficial Python client library for CardPointe Gateway and CardSecure APIs.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/dldevinc/cardpointe-api-python-client
license = BSD license
author = Mihail Mishakin
author_email = [email protected]
maintainer = Mihail Mishakin
maintainer_email = [email protected]
platforms = OS Independent
classifiers =
Intended Audience :: Developers
Development Status :: 3 - Alpha
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
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
Topic :: Software Development :: Libraries :: Python Modules
[bdist_wheel]
universal = 1
[options]
zip_safe = false
python_requires = >= 3.7
include_package_data = true
install_requires =
requests
packages = find:
[options.packages.find]
exclude =
tests
tests.*
[isort]
multi_line_output = 3
include_trailing_comma = True
force_grid_wrap = 0
use_parentheses = True
line_length = 90
known_first_party = app
[flake8]
max-line-length = 90
max-complexity = 10
exclude =
tests/
per-file-ignores =
# imported but unused
__init__.py: F401
apps.py: F401
ignore =
# Line too long
E501
# Continuation line under-indented for visual indent
E128
# Line break after binary operator
W503
W504
# Function is too complex
C901
[mypy]
files = cardpointe
strict_optional = False
check_untyped_defs = True
allow_redefinition = True
pretty = True