-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
61 lines (51 loc) · 1.37 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
[bumpversion]
current_version = 0.1.1
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)((?P<pre_release>\.dev|a|b|rc)(?P<pre_release_num>\d+))?
serialize =
{major}.{minor}.{patch}{pre_release}{pre_release_num}
{major}.{minor}.{patch}
[metadata]
author = Caitlyn O'Hanna
author_email = ravenoak@virtualxistenz.com
description = Common elements used in the Quaerere Platform
long_description = file: README.rst
classifiers =
Development Status :: 2 - Pre-Alpha
License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
Operating System :: OS Independent
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
license = AGPLv3+
license_file = LICENSE.txt
project_urls =
Documentation = http://quaerere-base-common.readthedocs.io/
Source Code = https://github.com/QuaererePlatform/quaerere-base-common
url = https://github.com/QuaererePlatform/quaerere-base-common
[aliases]
test = pytest
[options]
python_requires = >= 3.6
packages = find:
[options.packages.find]
exclude =
docs
tests
[bumpversion:file:VERSION]
search = ^{current_version}$
replace = {new_version}
[bumpversion:part:pre_release]
first_value = .dev
optional_value = b
values =
.dev
a
b
rc
[tool:pytest]
testpaths = tests
addopts = --cov=quaerere_base_common --flake8
[coverage:run]
branch = True
[coverage:report]
show_missing = True
skip_covered = True