-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.cfg
74 lines (68 loc) · 1.71 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
[metadata]
name = suitable
version = 0.20.3
url = http://github.com/seantis/suitable/
author = Denis Krienbühl
author_email = [email protected]
maintainer = Seantis GmbH
maintainer_email = [email protected]
description = Suitable is a thin wrapper around the Ansible API.
long_description = file: README.rst, CHANGELOG.rst
long_description_content_type = text/x-rst
license = GPLv3
license_files = LICENSE
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: Implementation :: CPython
Topic :: Software Development :: Libraries :: Python Modules
[options]
zip_safe = False
include_package_data = True
package_dir =
= src
packages =
suitable
python_requires = >= 3.8
platforms = any
install_requires =
ansible>=6
ansible-core>=2.13
packaging
[options.extras_require]
dev =
bump-my-version
bandit[toml]
flake8
flake8-bugbear
flake8-pyi
mypy
pre-commit
pyyaml
tox
types-pyyaml
tests =
mitogen>=0.3.7
paramiko
port-for
pytest
pytest-codecov[git]
[options.package_data]
suitable =
py.typed
[flake8]
extend-select = B901,B903,B904,B908
exclude=.venv,.git,.tox,dist,docs,*lib/python*,*egg,build
per_file_ignores =
*.pyi: B,E301,E302,E305,E501,E701,F401,F403,F405,F822,Y065
[bdist_wheel]
universal = 1