-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
39 lines (38 loc) · 1.19 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
from setuptools import setup
from distutils.core import setup,Extension
from Cython.Build import cythonize
import os
import sys
setup(
name="VaPoR",
version="0.0.1",
author="Xuefang Zhao, University of Michigan",
author_email="[email protected]",
description="PacBio long read based genomic structural variants validator.",
packages=["vapor_vali"],
scripts=["vapor_vali/vapor"],
package_data={
"vapor_vali": [
"templates/pred_config",
"templates/truth_config",
"contrib/SMCScoring.py",
],
},
ext_modules = cythonize("vapor_vali/*.pyx"),
install_requires=[
'cython', 'numpy','scipy','matplotlib','sklearn','rpy2'
],
license="Propriety",
keywords="Long read",
classifiers=[
"Development Status :: 1 - Planning",
"Environment :: Console",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: Other/Proprietary License",
"Natural Language :: English",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2 :: Only",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
)