-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
54 lines (45 loc) · 1.03 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
[metadata]
name = unwrap
summary = A tool for unwrapping paragraph lines
author = André Berti Sassi
author-email = [email protected]
license = MIT
home-page = http://...
description-file = README.rst
# Add here all kinds of additional classifiers as defined under
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifier =
Development Status :: 2 - Pre-Alpha
Programming Language :: Python
Topic :: Text Processing
[entry_points]
console_scripts =
unwrap = unwrap.command:run
[files]
packages =
unwrap
[test]
addopts = tests
[pytest]
addopts =
--cov unwrap --cov-report term-missing
--verbose
[aliases]
docs = build_sphinx
[bdist_wheel]
universal = 1
[build_sphinx]
source_dir = docs
build_dir = docs/_build
[pbr]
# Let pbr run sphinx-apidoc
autodoc_tree_index_modules = True
# autodoc_tree_excludes = ...
# Let pbr itself generate the apidoc
# autodoc_index_modules = True
# autodoc_exclude_modules = ...
# Convert warnings to errors
# warnerrors = True
[devpi:upload]
no-vcs = 1
formats = bdist_wheel