File: setup.py

package info (click to toggle)
lamassemble 1.7.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,288 kB
  • sloc: python: 679; sh: 63; makefile: 2
file content (23 lines) | stat: -rw-r--r-- 738 bytes parent folder | download
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",
    ],
)