-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
35 lines (32 loc) · 1001 Bytes
/
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
from setuptools import setup, find_packages
import os
HERE = os.path.dirname(__file__)
def read(fname):
return open(os.path.join(HERE, fname)).read()
# creates version_string
exec(open(os.path.join(HERE, "phos", "version.py")).read())
setup(name='photon_ptm',
version=version_string,
description='PHOsphoproteomic dissecTiOn via Networks',
long_description=read('README.md'),
url='http://www.github.com/jdrudolph/photon',
author='Jan Rudolph',
author_email='jan.daniel.rudolph@gmail.com',
license='MIT',
packages=find_packages(),
install_requires=[
'numpy',
'pandas>=0.23',
'scipy',
'matplotlib',
'networkx',
'perseuspy>=0.3.8',
'flask',
'requests',
'celery',
'redis',
'goenrich',
'joblib',
'sklearn',
'pytest-runner'],
tests_require=['pytest'])