-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
63 lines (51 loc) · 1.17 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
[metadata]
description_file = README.md
[bumpversion]
commit = False
tag = False
tag_name = v{new_version}
current_version = 0.0.1
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)((?P<pre>\.dev|a|b|rc|\.post|final|\+)(?P<pre_build>.+))?
serialize =
{major}.{minor}.{patch}{pre}{pre_build}
{major}.{minor}.{patch}
[bumpversion:file:tarot_fortune/_meta.py]
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"
[bumpversion:part:pre]
optional_value = final
first_value = final
values =
.dev
a
b
rc
.post
+
final
[bumpversion:part:pre_build]
first_value = 0
[bdist_wheel]
universal = 1
[aliases]
test = pytest
[tool:pytest]
testpaths = tests
collect_ignore = ['setup.py']
[pycodestyle]
max-line-length = 120
show-source = True
statistics = True
ignore = E121, E123, E126, E133, E226, E241, E242, E704, W503, W504, W505, E402
[coverage:run]
branch = True
[coverage:report]
# Regexes for lines to exclude from consideration
exclude_lines =
# Have to re-enable the standard pragma
pragma: no cover
[coverage:html]
directory = docs/_build/coverage
[options.entry_points]
console_scripts =
tarot-fortune = tarot_fortune.bin.fortune:app