-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
188 lines (184 loc) · 4.99 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
# This file is part of the `omnipath` python module
#
# Copyright
# 2020
# Heidelberg University
#
# File author(s): Dénes Türei ([email protected])
#
# Distributed under the MIT (expat) License.
# See accompanying file LICENSE or copy at
# https://opensource.org/licenses/MIT
#
# Website: http://omnipathdb.org/
#
from pathlib import Path
from setuptools import setup, find_packages
try:
from omnipath import __email__, __author__, __version__, __maintainer__
except ImportError:
__author__ = "Michal Klein, Dénes Türei"
__maintainer__ = "Michal Klein, Dénes Türei"
__email__ = "[email protected]"
__version__ = "1.0.8"
setup(
# general
name="omnipath",
use_scm_version=True,
setup_requires=["setuptools_scm"],
# version
version=__version__,
author=__author__,
author_email=__email__,
maintainer=__maintainer__,
maintainer_email=__email__,
# description
description=Path("README.rst").read_text("utf-8").splitlines()[2],
long_description=Path("README.rst").read_text("utf-8"),
long_description_content_type="text/x-rst; charset=UTF-8",
# links
url="https://omnipathdb.org/",
download_url="https://github.com/saezlab/omnipath/releases/",
project_urls={
"Documentation": "https://omnipath.readthedocs.io",
"Source Code": "https://github.com/saezlab/omnipath",
},
license="MIT",
platforms=["Linux", "Unix", "MacOSX", "Windows"],
# keywords
keywords=sorted(
{
"protein",
"mRNA",
"miRNA",
"DNA",
"signaling",
"SignaLink",
"SIGNOR",
"InnateDB",
"IntAct",
"Reactome",
"MPPI",
"NCI-PID",
"DIP",
"MatrixDB",
"PANTHER",
"PhosphoSite",
"PhosphoPoint",
"DEPOD",
"SPIKE",
"KEGG",
"Autophagy",
"ARN",
"NRF2ome",
"Guide to Pharmacology",
"UniProt",
"BioPAX",
"Ensembl",
"Surfaceome",
"Exocarta",
"Vesiclepedia",
"Matrisome",
"Human Protein Atlas",
"Compleat",
"CORUM",
"ComplexPortal",
"BioGRID",
"STRING",
"ICELLNET",
"Cell Surface Protein Atlas",
"COSMIC",
"Cancer Gene Census",
"IntOGen",
"TopDB",
"iTALK",
"Human Plasma Membrane Receptome",
"EMBRACE",
"ELM",
"phospho.ELM",
"CancerSEA",
"ComPPI",
"CellPhoneDB",
"DGIdb",
"DisGeNet",
"PAZAR",
"ORegAnno",
"TRED",
"DoRothEA",
"TRRD",
"CPAD",
"regulation",
"phosphorylation",
"kinase",
"phosphatase",
"dephosphorylation",
"directed graph",
"annotations",
"cancer",
"complexes",
"intercellular communication",
"HGNC",
"GPCRdb",
"MSigDB",
"GSEA",
"Phobius",
"Phosphatome",
"NetPath",
"gene",
"gene symbol",
"mouse",
"rat",
"HomoloGene",
"integrin",
"adhesion",
"receptor",
"ligand",
"transporter",
"ion channel",
"disease",
"activity flow",
"transcription",
"PPI",
"subcellular localization",
"pathway",
"signaling pathway",
}
),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Natural Language :: English",
"Typing :: Typed",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
# package installation
packages=find_packages(),
zip_safe=False,
python_requires=">=3.7",
include_package_data=False,
install_requires=list(
map(
str.strip,
Path("requirements.txt").read_text("utf-8").splitlines(),
)
),
extras_require={
"graph": ["networkx>=2.3.0"],
"tests": ["tox>=3.20.1"],
"docs": [
line
for line in (Path("docs") / "requirements.txt")
.read_text("utf-8")
.splitlines()
if not line.startswith("-r")
],
"dev": ["pre-commit>=2.7.1", "bump2version"],
},
)