-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
62 lines (56 loc) · 1.63 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
[metadata]
name = configerus
version = 3.0.1
description = Plugin-Based configuration manager
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/james-nesbitt/configerus
author = James Nesbitt
author_email = [email protected]
license = MIT
license_file = LICENSE
platforms = unix, linux, osx
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: MacOS :: MacOS X
Operating System :: POSIX
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Software Development :: Libraries
Topic :: Utilities
keywords = test, unittest
project_urls =
Source=https://github.com/james-nesbitt/configerus
[options]
packages =
configerus
configerus.contrib.env
configerus.contrib.dict
configerus.contrib.files
configerus.contrib.get
configerus.contrib.jsonschema
configerus.test
include_package_data = True
install_requires =
pyyaml
jsonschema
[options.entry_points]
configerus.bootstrap =
env = configerus.contrib.env:configerus_bootstrap
dict = configerus.contrib.dict:configerus_bootstrap
files = configerus.contrib.files:configerus_bootstrap
get = configerus.contrib.get:configerus_bootstrap
jsonschema = configerus.contrib.jsonschema:configerus_bootstrap
[flake8]
max-line-length = 99
[pycodestyle]
max_line_length = 99
in-place = true
recursive = true
aggressive = 3
[mypy]
[pydocstyle]