1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
import setuptools
from setuptools import find_packages
commitInfo = " (grafted, HEAD, tag: 1.7.4)".strip("( )").split()
version = commitInfo[commitInfo.index("tag:") + 1].rstrip(",")
setuptools.setup(
name="lamassemble",
version=version,
packages=find_packages(),
description='Merge overlapping "long" DNA reads into a consensus sequence',
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://gitlab.com/mcfrith/lamassemble",
classifiers=[
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"License :: OSI Approved :: MIT License",
],
scripts=[
"lamassemble",
],
)
|