forked from QuaererePlatform/Flask-arango-orm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
62 lines (53 loc) · 1.49 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
[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 = [email protected]
description = Flask connector for ArangoDB using arango-orm
long_description = file: README.rst
classifiers =
Development Status :: 2 - Pre-Alpha
Environment :: Plugins
Environment :: Web Environment
Framework :: Flask
Intended Audience :: Developers
License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
Operating System :: OS Independent
Programming Language :: Python :: 3 :: Only
Topic :: Database
Topic :: Internet :: WWW/HTTP :: WSGI
Topic :: Software Development :: Libraries :: Python Modules
license = LGPLv3+
license_file = LICENSE.txt
project_urls =
Documentation = http://flask-arango-orm.readthedocs.io/
Source Code = https://github.com/QuaererePlatform/Flask-arango-orm
url = https://github.com/QuaererePlatform/Flask-arango-orm
[aliases]
test = pytest
[options]
python_requires = >= 3.6
packages = find:
[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=flask_arango_orm --flake8
[coverage:run]
branch = True
[coverage:report]
show_missing = True
skip_covered = True