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 :: 3
|
|
|
|
Programming Language :: Python :: 3.7
|
|
|
|
Programming Language :: Python :: 3.8
|
2020-12-04 00:15:50 -06:00
|
|
|
Programming Language :: Python :: 3.9
|
2021-10-09 06:26:28 -05:00
|
|
|
Programming Language :: Python :: 3.10
|
2022-10-26 12:15:00 -05:00
|
|
|
Programming Language :: Python :: 3.11
|
2020-09-01 09:51:25 -05:00
|
|
|
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:
|
|
|
|
|
2022-09-13 00:59:17 -05:00
|
|
|
python_requires = >=3.7
|
2020-09-01 09:51:25 -05:00
|
|
|
|
|
|
|
include_package_data = True
|
|
|
|
install_requires =
|
|
|
|
pathspec >= 0.5.3
|
|
|
|
pyyaml
|
2021-08-21 12:21:11 -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
|
2021-03-15 12:36:43 -05:00
|
|
|
|
|
|
|
[coverage:run]
|
|
|
|
relative_files = True
|