forked from ansible/ansible-lint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
127 lines (112 loc) · 3.83 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
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
# spell-checker:ignore apidoc programoutput sphinxcontrib
[metadata]
name = ansible-lint
url = https://github.com/ansible-community/ansible-lint
project_urls =
Bug Tracker = https://github.com/ansible-community/ansible-lint/issues
Release Management = https://github.com/ansible-community/ansible-lint/releases
CI: GitHub = https://github.com/ansible-community/ansible-lint/actions?query=workflow:tox+branch:main+event:push
Code of Conduct = https://docs.ansible.com/ansible/latest/community/code_of_conduct.html
Documentation = https://ansible-lint.readthedocs.io/
Mailing lists = https://docs.ansible.com/ansible/latest/community/communication.html#asking-questions-over-email
Source Code = https://github.com/ansible-community/ansible-lint
description = Checks playbooks for practices and behavior that could potentially be improved
long_description = file: README.md
long_description_content_type = text/markdown
author = Will Thames
author_email = [email protected]
maintainer = Ansible by Red Hat
maintainer_email = [email protected]
license = GPLv3
license_files =
COPYING
docs/licenses/LICENSE*.*
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Console
Intended Audience :: Developers
Intended Audience :: Information Technology
Intended Audience :: System Administrators
Operating System :: OS Independent
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
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 :: Implementation
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: Jython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Software Development :: Bug Tracking
Topic :: Software Development :: Quality Assurance
Topic :: Software Development :: Testing
Topic :: Utilities
keywords =
ansible
lint
[options]
use_scm_version = True
python_requires = >=3.8
package_dir =
= src
packages = find:
# Do not use include_package_data as we mention them explicitly.
# see https://setuptools.pypa.io/en/latest/userguide/datafiles.html
# include_package_data = True
zip_safe = False
# These are required in actual runtime:
install_requires =
ansible-compat>=2.2.1 # GPLv3
ansible-core>=2.12.0 # GPLv3
black>=22.1.0 # MIT
filelock # The Unlicense
jsonschema>=4.9.0 # MIT, version needed for improved errors
packaging
pyyaml
rich>=9.5.1
# The next version is planned to have breaking changes
ruamel.yaml >= 0.15.34, < 0.18
# NOTE: per issue #509 0.15.34 included in debian backports
wcmatch>=7.0 # MIT
yamllint >= 1.25.0 # GPLv3
[options.entry_points]
console_scripts =
ansible-lint = ansiblelint.__main__:_run_cli_entrypoint
[options.extras_require]
docs =
myst-parser >= 0.16.1
pipdeptree >= 2.2.1
sphinx >= 4.4.0
sphinx-ansible-theme >= 0.9.1
sphinx-rtd-theme >= 1.0.0, < 2.0.0 # 1.0.0 broke rendering
sphinxcontrib-apidoc >= 0.3.0
sphinxcontrib-programoutput2 >= 2.0a1
yamllint >= 1.26.3
test =
coverage-enable-subprocess # see https://github.com/nedbat/coveragepy/issues/1341#issuecomment-1228942657
coverage[toml] >= 6.4.4
flaky >= 3.7.0
pytest >= 7.2.0
pytest-plus >= 0.2 # for PYTEST_REQPASS
pytest-xdist >= 2.1.0
psutil # soft-dep of pytest-xdist
black # IDE support
mypy # IDE support
pylint # IDE support
flake8 # IDE support
flake8-future-annotations # IDE support
[options.packages.find]
where = src
[options.package_data]
* =
py.typed
**/*.json
**/*.yml
**/*.yaml
**/*.md
[codespell]
skip = .tox,.mypy_cache,build,.git,.eggs,pip-wheel-metadata
# indention is a typo in ruamel.yaml's API
ignore-words-list = indention