forked from SBRG/MASSdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
82 lines (75 loc) · 1.72 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[bumpversion]
current_version = 0.0.4a0
commit = True
tag = True
tag_name = v{new_version}
parse = (?P<major>\d+)
\.(?P<minor>\d+)
\.(?P<patch>\d+)
(?P<release>[a|b]*)(?P<num>\d*)
serialize =
{major}.{minor}.{patch}{release}{num}
{major}.{minor}.{patch}
[bumpversion:part:release]
optional_value = final_release
first_value = a
values =
a
b
final_release
[bumpversion:file:src/massdb/__init__.py]
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"
[metadata]
name = massdb
version = attr: massdb.__version__
author = Zachary B. Haiman
author_email = zhaiman@eng.ucsd.edu
maintainer = Zachary B. Haiman
maintainer_email = zhaiman@eng.ucsd.edu
classifiers =
Development Status :: 1 - Planning
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Scientific/Engineering :: Bio-Informatics
license = MIT
license_file = LICENSE
description = Source code for the MASS database project managing software.
long_description = file: README.md
long_description_content_type = text/markdown
keywords =
python
MASS
[options]
zip_safe = True
install_requires =
mass_manager
notebook
python_requires = ~=3.6
include_package_data = True
packages = find:
package_dir =
= src
[options.packages.find]
where = src
include =
massdb
[options.extras_require]
development =
bumpversion
pre-commit
towncrier
tox
all =
%(development)s
[flake8]
ignore = E203, E266, E501, W503, F401
max-line-length = 88
max-complexity = 18