-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.cfg
83 lines (70 loc) · 1.95 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
# .. seealso:: https://setuptools.readthedocs.io/en/latest/setuptools.html#configuring-setup-using-setup-cfg-files
# .. seealso:: https://wheel.readthedocs.io/en/stable/
[bdist_wheel]
universal = 1
[aliases]
dists = clean --all sdist bdist_wheel
[metadata]
name = ansiblelint_custom_rules_ex
description = Ansible-lint custom rule examples
project_urls =
CI: Travis = https://travis-ci.org/ssato/ansible-lint-custom-rules
Bug Tracker = https://github.com/ssato/ansible-lint-custom-rules/issues
Source = https://github.com/ssato/ansible-lint-custom-rules
long_description =
Some code examples to extend ansible-lint by adding custom rules
implementations.
author = Satoru SATOH
author_email = [email protected]
maintainer = Satoru SATOH
maintainer_email = [email protected]
license = MIT
url = https://github.com/ssato/ansible-lint-custom-rules
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Environment :: Console
Operating System :: OS Independent
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Utilities
License :: OSI Approved :: MIT License
[options]
include_package_data = True
packages =
ansiblelint.rules.custom.ssato
package_dir =
ansiblelint.rules.custom.ssato = rules
# minimum dependencies.
install_requires =
setuptools
ansible-lint
[options.extras_require]
devel =
coveralls
flake8
mock
pytest
pycodestyle
pylint
[options.packages.find]
where = .
exclude =
tests
tests.*
[tool:pytest]
testpaths =
tests
python_files =
test_*.py
Test*.py
addopts = --doctest-modules -n auto --cov=rules -vv
[flake8]
per-file-ignores =
tests/common/__init__.py:F401
# vim:sw=4:ts=4:et: