forked from ssato/python-anyconfig
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
80 lines (70 loc) · 2.14 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
# .. seealso:: https://setuptools.readthedocs.io/en/latest/setuptools.html#configuring-setup-using-setup-cfg-files
# .. seealso:: https://wheel.readthedocs.io/en/stable/
[bdist_wheel]
universal = 1
[metadata]
name = anyconfig
#version = attr: anyconfig.VERSION
description = Library provides common APIs to load and dump configuration files in various formats
long_description =
python-anyconfig is a python library provides common APIs to load and dump
configuration files in various formats with some useful features such as
contents merge, templates, query, schema validation and generation support.
- Home: https://github.com/ssato/python-anyconfig
- Author: Satoru SATOH <[email protected]>
- License: MIT
- Document: http://python-anyconfig.readthedocs.org/en/latest/
- Download: PyPI (https://pypi.python.org/pypi/anyconfig) or Copr RPM repos ( https://copr.fedoraproject.org/coprs/ssato/python-anyconfig/)
author = Satoru SATOH
author_email = [email protected]
maintainer = Satoru SATOH
maintainer_email = [email protected]
license = MIT
url = https://github.com/ssato/python-anyconfig
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
Programming Language :: Python
Programming Language :: Python :: 2
Programming Language :: Python :: 3
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Environment :: Console
Operating System :: OS Independent
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Text Processing :: Markup
Topic :: Utilities
License :: OSI Approved :: MIT License
[options]
include_package_data = True
packages = find:
# minimum dependencies.
install_requires =
setuptools
[options.extras_require]
yaml =
pyyaml
toml =
toml
query =
jmespath
schema =
jsonschema
template =
Jinja2
devel =
coveralls
flake8<3.5.0
mock
nose
pylint
pycodestyle<2.4.0
[options.packages.find]
where = src
exclude =
tests
tests.*
[options.entry_points]
console_scripts =
anyconfig_cli = anyconfig.cli:main