2016-10-10 04:40:36 -05:00
|
|
|
[bdist_wheel]
|
|
|
|
universal = 1
|
2017-06-28 08:18:40 -05:00
|
|
|
|
|
|
|
[flake8]
|
|
|
|
import-order-style = pep8
|
2017-12-07 07:02:07 -06:00
|
|
|
application-import-names = yamllint
|
2020-05-03 09:55:57 -05:00
|
|
|
ignore = W503,W504
|
2017-11-04 09:57:39 -05:00
|
|
|
|
|
|
|
[build_sphinx]
|
|
|
|
all-files = 1
|
|
|
|
source-dir = docs
|
|
|
|
build-dir = docs/_build
|
|
|
|
warning-is-error = 1
|
2020-09-01 09:51:25 -05:00
|
|
|
|
|
|
|
[metadata]
|
|
|
|
keywords =
|
|
|
|
yaml
|
|
|
|
lint
|
|
|
|
linter
|
|
|
|
syntax
|
|
|
|
checker
|
|
|
|
|
|
|
|
url = https://github.com/adrienverge/yamllint
|
|
|
|
classifiers =
|
|
|
|
Development Status :: 5 - Production/Stable
|
|
|
|
Environment :: Console
|
|
|
|
Intended Audience :: Developers
|
|
|
|
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
|
|
|
|
Programming Language :: Python :: 2
|
|
|
|
Programming Language :: Python :: 2.7
|
|
|
|
Programming Language :: Python :: 3
|
|
|
|
Programming Language :: Python :: 3.4
|
|
|
|
Programming Language :: Python :: 3.5
|
|
|
|
Programming Language :: Python :: 3.6
|
|
|
|
Programming Language :: Python :: 3.7
|
|
|
|
Programming Language :: Python :: 3.8
|
|
|
|
Topic :: Software Development
|
|
|
|
Topic :: Software Development :: Debuggers
|
|
|
|
Topic :: Software Development :: Quality Assurance
|
|
|
|
Topic :: Software Development :: Testing
|
|
|
|
|
2020-09-02 10:51:36 -05:00
|
|
|
project_urls =
|
|
|
|
Documentation = https://yamllint.readthedocs.io
|
|
|
|
Download = https://pypi.org/project/yamllint/#files
|
|
|
|
Bug Tracker = https://github.com/adrienverge/yamllint/issues
|
|
|
|
Source Code = https://github.com/adrienverge/yamllint
|
|
|
|
|
2020-09-01 09:51:25 -05:00
|
|
|
[options]
|
|
|
|
packages = find:
|
|
|
|
|
|
|
|
python_requires = >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
|
|
|
|
|
|
|
|
include_package_data = True
|
|
|
|
install_requires =
|
|
|
|
pathspec >= 0.5.3
|
|
|
|
pyyaml
|
2020-09-12 02:54:27 -05:00
|
|
|
setuptools
|
2020-09-01 09:51:25 -05:00
|
|
|
|
|
|
|
test_suite = tests
|
|
|
|
|
|
|
|
[options.packages.find]
|
|
|
|
exclude =
|
|
|
|
tests
|
|
|
|
tests.*
|
|
|
|
|
|
|
|
[options.package_data]
|
|
|
|
yamllint = conf/*.yaml
|
|
|
|
|
|
|
|
[options.entry_points]
|
|
|
|
console_scripts =
|
|
|
|
yamllint = yamllint.cli:run
|