2017-06-28 15:18:40 +02:00
|
|
|
[flake8]
|
|
|
|
|
import-order-style = pep8
|
2017-12-07 14:02:07 +01:00
|
|
|
application-import-names = yamllint
|
2020-05-03 15:55:57 +01:00
|
|
|
ignore = W503,W504
|
2017-11-04 15:57:39 +01:00
|
|
|
|
|
|
|
|
[build_sphinx]
|
|
|
|
|
all-files = 1
|
|
|
|
|
source-dir = docs
|
|
|
|
|
build-dir = docs/_build
|
|
|
|
|
warning-is-error = 1
|
2020-09-01 23:51:25 +09: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-03 22:15:50 -08:00
|
|
|
Programming Language :: Python :: 3.9
|
2021-10-09 14:26:28 +03:00
|
|
|
Programming Language :: Python :: 3.10
|
2022-10-26 19:15:00 +02:00
|
|
|
Programming Language :: Python :: 3.11
|
2020-09-01 23:51:25 +09:00
|
|
|
Topic :: Software Development
|
|
|
|
|
Topic :: Software Development :: Debuggers
|
|
|
|
|
Topic :: Software Development :: Quality Assurance
|
|
|
|
|
Topic :: Software Development :: Testing
|
|
|
|
|
|
2020-09-03 00:51:36 +09: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 23:51:25 +09:00
|
|
|
[options]
|
|
|
|
|
packages = find:
|
|
|
|
|
|
2022-09-13 07:59:17 +02:00
|
|
|
python_requires = >=3.7
|
2020-09-01 23:51:25 +09:00
|
|
|
|
|
|
|
|
include_package_data = True
|
|
|
|
|
install_requires =
|
|
|
|
|
pathspec >= 0.5.3
|
|
|
|
|
pyyaml
|
2021-08-21 19:21:11 +02:00
|
|
|
setuptools
|
2020-09-01 23:51:25 +09: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 18:36:43 +01:00
|
|
|
|
|
|
|
|
[coverage:run]
|
|
|
|
|
relative_files = True
|