-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.cfg
55 lines (48 loc) · 1.43 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
[flake8]
import-order-style = pep8
max-line-length = 120
ignore = T100, T101, W503, AAA01
[pylint.MASTER]
load-plugins=pylint.extensions.no_self_use
[pylint.FORMAT]
max-line-length = 120
[pylint.MESSAGES CONTROL]
disable = fixme
[metadata]
version = 0.9.15
name = yamlfixer-opt-nc
description = automates the fixing of problems reported by yamllint
long_description = file: README.md
author = "OPT-NC"
author_email = "[email protected]"
license = "GPLv3+"
license_file = LICENSE
long_description_content_type = text/markdown
url = https://github.com/opt-nc/yamlfixer
project_urls =
Bug Tracker = https://github.com/opt-nc/yamlfixer/issues
GitHub Releases = https://github.com/opt-nc/yamlfixer/releases
Files = https://pypi.org/project/yamlfixer-opt-nc/#files
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Operating System :: OS Independent
Environment :: Console
Topic :: Utilities
Topic :: Text Processing
Development Status :: 5 - Production/Stable
Intended Audience :: System Administrators
Intended Audience :: Developers
Natural Language :: English
[options]
packages = find:
python_requires = >=3.6
include_package_data = True
install_requires =
yamllint >= 1.27.1
setuptools
[options.package_data]
yamlfixer = examples/*.yaml examples/*.yml
[options.entry_points]
console_scripts =
yamlfixer = yamlfixer.__main__:run