-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
40 lines (38 loc) · 1.06 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="tigmint",
version="1.2.10",
author="Shaun Jackman",
author_email="[email protected]",
description="Correct misassemblies using linked or long reads",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://bcgsc.github.io/tigmint/",
license="GPLv3",
python_requires=">=3",
install_requires=[
"intervaltree",
"pybedtools",
"pysam",
"statistics",
"numpy",
"btllib",
],
scripts=[
"bin/tigmint",
"bin/tigmint-arcs-tsv",
"bin/tigmint-cut",
"bin/tigmint-make",
"bin/tigmint_molecule.py",
"bin/tigmint_molecule_paf.py",
"bin/tigmint_estimate_dist.py",
"bin/tigmint-ntlink-map",
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
)