forked from GuipengLi/SharePathway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py~
16 lines (15 loc) · 775 Bytes
/
setup.py~
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
from distutils.core import setup
setup(
name = 'sharepathway',
packages = ['sharepathway'], # this must be the same as the name above
version = '0.1.1',
description = 'A Python package for KEGG pathway enrichment analysis with multiple gene lists',
author = 'Guipeng Li',
author_email = '[email protected]',
url = 'https://github.com/GuipengLi/sharepathway', # use the URL to the github repo
download_url = 'https://github.com/GuipengLi/sharepathway/tarball/0.1.0', # I'll explain this in a second
keywords = ['detection', 'pathway', 'enrichment', 'share', 'multiple gene lists'], # arbitrary keywords
classifiers = [],
long_description=open('README.md').read(),
install_requires=["numpy >= 1.6.0", "scipy >= 0.12.0"],
)