forked from saezlab/pypath
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
122 lines (113 loc) · 3.24 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# This file is part of the `pypath` python module
#
# Copyright
# 2014-2018
# EMBL, EMBL-EBI, Uniklinik RWTH Aachen, Heidelberg University
#
# File author(s): Dénes Türei ([email protected])
# Nicolàs Palacio
#
# Distributed under the GPLv3 License.
# See accompanying file LICENSE.txt or copy at
# http://www.gnu.org/licenses/gpl-3.0.html
#
# Website: http://pypath.omnipathdb.org/
#
__revision__ = "$Id$"
import os
from setuptools import setup, find_packages
import imp
from setuptools.command.install import install as _install
_version = imp.load_source(
'_version',
os.path.join('src', 'pypath', '_version.py')
)
__version__ = _version.__version__
with open('README.rst') as f:
readme = f.read()
with open('HISTORY.rst') as f:
history = f.read()
ENTRY_POINTS = {
'console_scripts': [
'bio2bel_omnipath = pypath.bel:main',
],
'bio2bel': [
'omnipath = pypath.bel',
],
}
setup(
name = 'pypath',
version = __version__,
maintainer = 'Dénes Türei, Nicolas Palacio',
maintainer_email = '[email protected]',
author = 'Dénes Türei, Nicolas Palacio',
author_email = '[email protected]',
long_description = readme + '\n\n' + history,
keywords = [
'protein', 'mRNA', 'DNA', 'signaling',
'SignaLink', 'Signor', 'InnateDB', 'IntAct', 'Reactome',
'MPPI', 'NCI-PID', 'DIP', 'MatrixDB', 'PANTHER',
'PhosphoSite', 'PhosphoPoint', 'DEPOD', 'SPIKE', 'KEGG',
'Autophagy', 'ARN', 'NRF2', 'NRF2ome', 'Guide to Pharmacology',
'regulation', 'phosphorylation', 'kinase', 'phosphatase',
'dephosphorylation', 'directed graph',
],
description = 'Molecular networks in Python',
license = 'GPLv3',
platforms = ['Linux', 'Unix', 'MacOSX', 'Windows'],
url = ['http://pypath.omnipathdb.org/'],
download_url = ['http://pypath.omnipathdb.org/releases/'],
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Natural Language :: English',
'Topic :: Scientific/Engineering :: Bio-Informatics'
],
# package installation
package_dir = {'':'src'},
packages = list(set(find_packages() + ['pypath', 'pypath.data'])),
include_package_data = True,
# dependency_links = deplinks
install_requires = [
'python-igraph',
'beautifulsoup4',
'configparser',
'pyopenssl',
'ndg-httpsclient',
'chembl_webresource_client',
'pyasn1',
'numpy',
'scipy',
'matplotlib',
'statsmodels',
'pycurl',
'lxml',
'xlrd',
'httplib2',
'future',
'tqdm',
'fabric3',
'timeloop',
],
extras_require = {
'tests': [
'pytest',
],
'docs': [
'sphinx',
],
'bel': [
'pybel',
'bio2bel',
'click',
],
},
entry_points=ENTRY_POINTS,
)