-
Notifications
You must be signed in to change notification settings - Fork 139
/
setup.cfg
66 lines (53 loc) · 1.36 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
[metadata]
name = %%name%%
version = %%version%%
summary = %%description%%
description-file =
README.rst
CHANGELOG.rst
license_file = LICENSE
requires_dist =
## sdist info
author = %%author%%
author_email = %%email%%
home_page = http://github.com/vaab/%%name%%
license = BSD 3-Clause License
classifier =
Programming Language :: Python
Environment :: Console
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Topic :: Software Development
Development Status :: 5 - Production/Stable
Topic :: Software Development :: Version Control
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
[backwards_compat]
include_package_data = True
[files]
packages_root = src
packages =
%%name%%
[entry_points]
console_scripts =
gitchangelog = gitchangelog.gitchangelog:main
[bdist_wheel]
universal = 1
[nosetests]
verbosity = 3
with-doctest = 1
doctest-extension = rst
exe = 1
with-coverage = 1
cover-package = gitchangelog
#cover-min-percentage = 90
doctest-options = +ELLIPSIS,+NORMALIZE_WHITESPACE
[flake8]
ignore = E265,E266,W391,E262,E126,E127
max-line-length = 80
max-complexity = 10