forked from cstoeckert/iterativeWGCNA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
18 lines (17 loc) · 816 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from setuptools import setup, find_packages
setup(name='iterativeWGCNA',
version='1.1.6',
description="Iterative application of WGCNA",
long_description='''Iterative application of
Weighted Gene Correlation Network Analysis (WGCNA)
to improve whole-transcriptome gene classification''',
url='http://github.com/cstoeckert/iterativeWGCNA',
download_url='https://github.com/cstoeckert/iterativeWGCNA/archive/v1.1.6.tar.gz',
author='Emily Greenfest-Allen',
author_email='[email protected]',
license='GNU',
packages=find_packages(),
install_requires=['rpy2','matplotlib'],
keywords=['network', 'WGCNA', 'gene expression', 'bioinformatics'],
scripts=['bin/iterativeWGCNA', 'bin/iterativeWGCNA_merge'],
zip_safe=False)