-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.cfg
94 lines (82 loc) · 2.38 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
[bdist_wheel]
universal = 1
[metadata]
name = config-client
version = attr: config.__version__
author = Alexandre Menezes
author_email = alexandre.fmenezes@gmail.com
description = config client for Spring Cloud Config Server and Cloud Foundry
long_description = file: README.md
long_description_content_type = text/markdown
license = Apache-2.0
license_files = LICENSE
url = https://github.com/amenezes/config-client
project_urls =
Documentation = https://config-client.amenezes.net
Code = https://github.com/amenezes/config-client
Issue tracker = https://github.com/amenezes/config-client/issues
Changes = https://github.com/amenezes/config-client/releases
classifiers =
Development Status :: 5 - Production/Stable
Framework :: AsyncIO
Framework :: Flask
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Software Development :: Libraries
Topic :: Software Development :: Libraries :: Java Libraries
keywords = ['spring', 'cloudfoundry', 'springcloud']
[options]
packages = find:
install_requires =
attrs >= 21.3.0
glom >= 19.2.0
requests >= 2.22.0
python_requires = >= 3.7
[options.extras_require]
cli = click>=8.1.3; rich>=12.6.0; trogon>=0.5.0
docs = mkdocs-material
all = click>=8.1.3; mkdocs-material; rich>=12.6.0; trogon>=0.5.0
[options.entry_points]
console_scripts =
config = config.__main__:cli
[flake8]
exclude = venv
__pycache__
*.pyc
__init__.py
ignore = E501
verbose = 2
doctests = True
show_source = True
statistics = True
count = True
[tool:pytest]
testpaths = tests
[mypy]
platform=linux
files = config
show_error_context = True
verbosity = 0
ignore_missing_imports = True
no_implicit_optional = True
warn_unused_configs = True
warn_return_any = True
warn_unused_ignores = True
warn_unreachable = True
[tox:tox]
envlist = py{37,38,39,310,311,312},pypy{3.8,3.9,3.10}
[testenv]
deps = -rrequirements-dev.txt
whitelist_externals = make
commands =
make ci