-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (34 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
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
setup(
name="ReVERSe",
packages=["ReVERSe"],
version="0.2",
description="Rare Variant Enrichment and Recessive Segregation",
author="David A. Parry",
author_email="[email protected]",
url='https://github.com/david-a-parry/ReVERSe',
download_url='https://github.com/david-a-parry/ReVERSe/archive/0.1.tar.gz',
license='MIT',
install_requires=['vase>=0.4', 'pandas', 'xlsxwriter', 'requests',
'biopython', 'scipy'],
extras_require={
'MYGENEINFO': ['mygene'],
},
scripts=["bin/ReVERSe_count",
"bin/ReVERSe_reporter",
"bin/ReVERSe_seg"],
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
dependency_links=[
'https://github.com/david-a-parry/vase/tarball/master#egg=vase-0.4'],
)