forked from mdozmorov/genomerunner_web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (37 loc) · 1.04 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
37
38
39
#!/usr/bin/env python
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup
setup(name='GenomeRunner web',
version='0.1.0',
author='Mikhail G. Dozmorov, Lukas R. Cara, Cory B. Giles',
license='License.txt',
url='http://www.genomerunner.org',
description='GenomeRunner web: Interpretation of SNP sets within regulatory context',
long_description=open('README.md').read(),
packages=['grsnp'],
package_dir={'grsnp': 'grsnp'},
include_package_data=True, # Install data from MANIFEST.in,
entry_points={
'console_scripts':[
'gr = grsnp.hypergeom4:main',
'gr-server = grsnp.server:main',
'gr-optimizer = grsnp.optimizer:main',
'gr-dbcreator = grsnp.dbcreator_encode:main'
]
}
)
# ,
# install_requires = [
# "cython == 0.22.1",
# "cherrypy == 3.8.0",
# "celery == 3.1.18",
# "numpy ==1.9.2",
# "scipy == 0.14.1",
# "rpy2 == 2.5.6",
# "simplejson == 3.6.5",
# "mako == 1.0.1",
# "BeautifulSoup == 3.2.0",
# "redis == 2.10.0"
# ]