-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 799 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 799 Bytes
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
import setuptools
commitInfo = "$Format:%d$".strip("( )").split()
version = commitInfo[commitInfo.index("tag:") + 1].rstrip(",")
setuptools.setup(
name="dnarrange",
version=version,
description='Find rearrangements in "long" DNA reads relative to a genome sequence',
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/mcfrith/dnarrange",
classifiers=[
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
],
scripts=[
"dnarrange",
"dnarrange-genes",
"dnarrange-link",
"dnarrange-merge",
"last-multiplot",
],
)