-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
32 lines (30 loc) · 880 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
27
28
29
30
31
from driverpower import __version__
from setuptools import setup, find_packages
setup(
name='DriverPower',
version=__version__,
author='Shimin Shuai',
author_email='sshuai@oicr.on.ca',
url='https://github.com/smshuai/DriverPower',
license='GPL',
python_requires='>= 3.5.2',
packages=find_packages(),
description='Combined burden and functional test for coding and noncoding cancer drivers',
py_modules=['driverpower'],
include_package_data=True,
install_requires=[
'numpy >= 1.13.0',
'scipy >= 0.18.1',
'pandas >= 0.18.1',
'scikit-learn == 0.19.2',
'statsmodels >= 0.6.1',
'xgboost >= 0.6a',
'pybedtools >= 0.7.10',
'tables >= 3.4.4',
],
entry_points = {
'console_scripts': [
'driverpower=driverpower.interface:main',
],
},
)