File: setup.py

package info (click to toggle)
dnarrange 1.5.3-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,768 kB
  • sloc: python: 1,310; sh: 79; makefile: 2
file content (25 lines) | stat: -rw-r--r-- 817 bytes parent folder | download | duplicates (2)
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",
    ],
)