-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathsetup.py
36 lines (34 loc) · 1.28 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
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(name='goenrich',
version='1.12',
description='GO enrichment with python -- pandas meets networkx',
long_description=readme(),
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Software Development :: Libraries'],
keywords= ['GO', 'Gene Ontology', 'Biology', 'Enrichment',
'Bioinformatics', 'Computational Biology',
'library',
'visualization', 'graphviz', 'pandas'],
url='https://github.com/jdrudolph/goenrich',
download_url='https://github.com/jdrudolph/goenrich/tarball/1.6',
author='Jan Daniel Rudolph',
author_email='jan.daniel.rudolph@gmail.com',
license='MIT',
packages=['goenrich'],
install_requires=[
'numpy',
'pandas >= 0.17.0',
'scipy',
'networkx >= 2.4'],
test_suite='nose.collector',
tests_require=['nose', 'setuptools'],
zip_safe=False)