-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (34 loc) · 1.03 KB
/
setup.py
File metadata and controls
36 lines (34 loc) · 1.03 KB
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='nbgwas',
version='0.0.1',
description='Python 2.7 Package to perform network-boosted genome-wide association studies',
url='https://github.com/pypa/sampleproject',
author='Justin Huang',
author_email='jkh013@ucsd.edu',
license='MIT',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Science/Research',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7'
],
packages=find_packages(exclude=['os', 're', 'time']),
install_requires=[
'networkx>=1.11',
'numpy>=1.11.0',
'matplotlib>=1.5.1',
'multiprocessing>0.70',
'pandas>=0.19.0',
'requests>=2.13.0',
'scipy>=0.17.0',
'scikit-learn>=0.17.1',
'seaborn>=0.7.1']
)