forked from PacificBiosciences/paraphase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (22 loc) · 846 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
import paraphase
def readme():
with open("README.md") as f:
return f.read()
setup(
name="paraphase",
version=paraphase.__version__,
description="paraphase: HiFi-based caller for highly homologous genes",
long_description=readme(),
url="https://github.com/PacificBiosciences/paraphase",
author="Xiao Chen",
author_email="xchen@pacificbiosciences.com",
license="BSD-3-Clause-Clear",
packages=["paraphase", "paraphase.genes"],
package_data={"paraphase": ["data/*", "data/**/*"]},
install_requires=["pysam", "numpy", "scipy", "networkx", "matplotlib", "pyyaml"],
setup_requires=["pytest-runner"],
tests_require=["pytest"],
entry_points={"console_scripts": ["paraphase=paraphase.__main__:main"]},
long_description_content_type="text/markdown",
)