-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
106 lines (92 loc) · 2.05 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
[metadata]
name = yaml-tools
version = attr: setuptools_scm.get_version
description = Console tools for YAML, CSV, and XML processing with config files in YAML.
url = https://github.com/sarnold/yaml-tools
author = Stephen Arnold
author_email = [email protected]
long_description = file: README.rst
long_description_content_type = text/rst; charset=UTF-8
license_expression = LGPL-2.1-or-later
license_files = LICENSE
license = LGPLv2+
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
Programming Language :: Python
Environment :: Console
Topic :: Software Development
Topic :: Software Development :: Testing
License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)
[options]
python_requires = >= 3.8
setup_requires =
setuptools_scm[toml]
install_requires =
dpath
importlib-resources; python_version < '3.10'
jinja2
natsort
nested-lookup
xmltodict
munch[yaml]
ruamel.yaml
pystache==0.6.5
packages = find_namespace:
package_dir =
=src
[options.packages.find]
where = src
[options.package_data]
yaml_tools.data =
*.txt
*.yaml
[options.entry_points]
console_scripts =
ymltoxml = yaml_tools.ymltoxml:main
yasort = yaml_tools.yasort:main
yagrep = yaml_tools.yagrep:main
oscal = yaml_tools.oscal:main
# extra deps are included here mainly for local/venv installs using pip
# otherwise deps are handled via tox, ci config files or pkg managers
[options.extras_require]
demos =
diskcache
fuzzy_match
numpy
doc =
sphinx
sphinx_git
recommonmark
sphinx_rtd_theme
sphinxcontrib-apidoc
test =
pytest
pytest-cov
cov =
coverage[toml]
coverage_python_version
all =
%(cov)s
%(doc)s
%(test)s
[check]
metadata = true
restructuredtext = true
strict = false
[check-manifest]
ignore =
.gitattributes
.gitignore
.pre-commit-config.yaml
[flake8]
exclude =
.git,
__pycache__,
build,
dist,
docs,
tests
per-file-ignores =
*/templates.py: E501
max-line-length = 99