-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
47 lines (40 loc) · 1.05 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
[bumpversion]
current_version = 0.11.0
commit = True
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?
serialize =
{major}.{minor}.{patch}-{release}
{major}.{minor}.{patch}
[bumpversion:part:release]
optional_value = production
values =
dev
production
[bumpversion:file:hiproc/__init__.py]
[metadata]
name = hiproc
version = attr:hiproc.__version__
author = attr:hiproc.__version__
author_email = [email protected]
description = A library to help process HiRISE EDRs with ISIS.
long_description = file: README.rst, CHANGELOG.rst
long_description_content_type = text/x-rst
url = https://github.com/rbeyer/hiproc
classifiers =
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Development Status :: 2 - Pre-Alpha
Natural Language :: English
[options]
packages = find:
python_requires = >=3.6
[bdist_wheel]
universal = 1
[flake8]
exclude = docs
[aliases]
test = pytest