-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
76 lines (62 loc) · 1.68 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
[metadata]
url = https://github.com/penguinolog/Config-Editor
author = Alexey Stepanov
author_email = [email protected]
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
Topic :: Software Development :: Libraries :: Python Modules
License :: OSI Approved :: Apache Software License
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
keywords =
config
ini
yaml
json
description = Context manager for changing content of config files
long_description = file: README.rst
license = Apache License, Version 2.0
[options]
zip_safe = True
packages = find:
setup_requires =
setuptools > 20.2
python_requires = >=2.6,!=3.0.*,!=3.1.*,!=3.2.*
[bdist_wheel]
# This flag says that the code is written to work on both Python 2 and Python
# 3. If at all possible, it is good practice to do this. If you cannot, you
# will need to generate wheels for each Python version that you support.
universal=1
[build_sphinx]
all_files = 1
build-dir = doc/build
source-dir = doc/source
[upload_sphinx]
upload-dir = doc/build/html
[flake8]
exclude =
.venv,
.git,
.tox,
dist,
doc,
*lib/python*,
*egg,
build,
__init__.py,
docs
ignore =
show-source = True
count = True
[aliases]
test=pytest
[tool:pytest]
addopts = -vv --cov-config .coveragerc --cov=config_editor