-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.cfg
37 lines (31 loc) · 983 Bytes
/
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
[metadata]
name = iAnnotateSV
version = attr: src.VERSION
description = The module helps to annotate structural variants called using NGS on human.
long_description = file: README.rst, CHANGELOG.rst, LICENSE.rst
keywords = structural, variants, NGS, MSK-IMPACT, MSK-ACCESS
license = Apache Software License
classifiers =
Programming Language :: Python
Programming Language :: Python :: 3.10
License :: OSI Approved :: Apache License
Operating System :: OS Independent
Intended Audience :: Science/Research
Topic :: Scientific/Engineering :: Bio-Informatics
Development Status :: 5 - Production/Stable
[bumpversion]
current_version = 1.3.0
commit = True
tag = True
[bumpversion:file:iAnnotateSV/__init__.py]
search = __version__ = '{current_version}'
replace = __version__ = '{new_version}'
[bdist_wheel]
universal = 1
[flake8]
exclude = docs
[aliases]
# Define setup.py command aliases here
test = poetry
[tool:poetry]
collect_ignore = ['setup.py']