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 = " (HEAD -> master, tag: 1.5.3)".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",
],
)
|