forked from guigolab/tmerge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 934 Bytes
/
setup.py
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
26
from setuptools import setup, find_packages
import os
with open(os.path.join("../", os.path.abspath(os.path.dirname(__file__)), 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name="tmerge",
version="2.0.3",
description="Merge transcriptome read-to-genome alignments into non-redundant transcript models.",
long_description=long_description,
long_description_content_type='text/markdown',
url="https://github.com/jacobwindsor/tmerge",
author="Jacob Windsor, Julien Lagarde",
author_email="[email protected]",
license="MIT",
keywords="tmerge merge transcriptomics stringtie2 rna-seq rnaseq long-read-rna long-read transcriptome",
packages=find_packages(include=["tmerge", "tmerge.*"]),
install_requires=["pyfaidx", "typing"],
python_requires='>=3',
entry_points={
"console_scripts": [
"tmerge = tmerge.cli:main"
]
}
)