-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
28 lines (27 loc) · 1.04 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='eQTLseq',
version='17.5.28',
description='Hierarchical probabilistic models for multiple gene/variant associations based on NGS data',
long_description='Hierarchical probabilistic models for multiple gene/variant associations based on NGS data',
author='Dimitrios V. Vavoulis',
author_email='Dimitris.Vavoulis@ndcls.well.ox.ac.uk',
url='https://github.com/dvav/eQTLseq',
license='MIT',
platforms=['UNIX'],
install_requires=['numpy>=1.12.0', 'scipy>=0.18.1', 'rpy2>=2.8.5', 'tqdm>=4.11.2'],
packages=['eQTLseq'],
keywords='eQTL Bayesian RNA-seq',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: Unix',
'Programming Language :: Python :: 3.5',
'Topic :: Scientific/Engineering :: Bio-Informatics'
]
)