-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
36 lines (34 loc) · 1.11 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
"""
Setup module adapted from setuptools code. See:
https://packaging.python.org/en/latest/distributing.html
https://github.com/pypa/sampleproject
"""
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
setup(
name='network_evaluation_tools',
version='1.0.2',
description='Module to perform patient and molecular network evaluation as described in Huang and Carlin, et al. 2018',
url='https://github.com/idekerlab/Network_Evaluation_Tools',
author='Justin Huang',
author_email='jkh013@ucsd.edu',
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7'
],
packages=find_packages(exclude=['copy', 'itertools', 'os', 're', 'time']),
install_requires=[
'argparse>=1.1',
'networkx>=2.1',
'numpy>=1.11.0',
'matplotlib>=1.5.1',
'pandas>=0.19.0',
'requests>=2.13.0',
'scipy>=0.17.0',
'scikit-learn>=0.17.1',
'seaborn>=0.7.1']
)