-
Notifications
You must be signed in to change notification settings - Fork 32
/
setup.py
executable file
·158 lines (135 loc) · 4.31 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
#!/usr/bin/env python
import sys
import os
try:
from setuptools import setup, find_packages
except ImportError:
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup, find_packages
NAME = 'Orange-Bioinformatics'
DOCUMENTATION_NAME = 'Orange Bioinformatics'
VERSION = '2.6.25'
DESCRIPTION = 'Orange Bioinformatics add-on for Orange data mining software package.'
LONG_DESCRIPTION = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
AUTHOR = 'Bioinformatics Laboratory, FRI UL'
AUTHOR_EMAIL = '[email protected]'
URL = 'http://orange.biolab.si/download'
LICENSE = 'GPLv3'
KEYWORDS = (
'data mining',
'machine learning',
'artificial intelligence',
'bioinformatics',
'gene ontology',
'KEGG',
'expression profiles',
'microarray',
'genomics',
'orange',
'orange add-on',
)
CLASSIFIERS = (
'Development Status :: 4 - Beta',
'Environment :: X11 Applications :: Qt',
'Environment :: Console',
'Environment :: Plugins',
'Programming Language :: Python',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Visualization',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Software Development :: Libraries :: Python Modules',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
)
PACKAGES = find_packages(
)
PACKAGE_DATA = {
}
# Backwards compatibility stub. Should be removed by the 2.7 release.
PY_MODULES = ["_bioinformatics"]
SETUP_REQUIRES = (
'setuptools',
)
INSTALL_REQUIRES = (
'Orange3' if sys.version_info > (3, ) else 'Orange',
'setuptools',
'numpy',
'scipy',
'six',
'genesis-pyapi>=1.1.2',
"slumber>=0.7.1",
"requests>=2.11.1",
"requests-cache>=0.4.12",
"serverfiles>=0.2",
# Dependencies which are problematic to install automatically
#'openbabel-python', # You get bindings together with the openbabel library and not stand-alone
#'scipy', # Requires Fortran compiler
#'matplotlib', # Requires that numpy is installed first
)
if sys.version_info > (3, ):
INSTALL_REQUIRES = INSTALL_REQUIRES + ("pyqtgraph", "AnyQt")
if sys.version_info < (3, 3):
INSTALL_REQUIRES = INSTALL_REQUIRES + ("backports.unittest_mock",)
if sys.version_info < (3, 4):
INSTALL_REQUIRES = INSTALL_REQUIRES + ("singledispatch",)
if sys.version_info < (3, 5):
INSTALL_REQUIRES = INSTALL_REQUIRES + ("typing",)
EXTRAS_REQUIRE = {
'MOL_DEPICT': (
'oasa'
),
'NETWORK': (
'Orange[NETWORK]'
),
}
DEPENDENCY_LINKS = (
# 'http://bkchem.zirael.org/download/bkchem-0.13.0.tar.gz',
# 'http://orange.biolab.si/download/bkchem-0.13.0.tar.gz',
'http://orange.biolab.si/download/oasa-0.13.1.tar.gz',
'http://bkchem.zirael.org/download/oasa-0.13.1.tar.gz',
)
ENTRY_POINTS = {
'orange.addons': (
'bio = orangecontrib.bio',
),
'orange.widgets': (
('Bioinformatics = orangecontrib.bio.widgets',
'Prototypes = orangecontrib.bio.widgets.prototypes')
if sys.version_info < (3, ) else
('Bioinformatics = orangecontrib.bio.widgets3',)
),
'orange.canvas.help': (
('intersphinx = orangecontrib.bio.widgets:intersphinx'
if sys.version_info < (3,) else
'html-index = orangecontrib.bio.widgets3:WIDGET_HELP_PATH'),
)
}
NAMESPACE_PACAKGES = ["orangecontrib", "orangecontrib.bio"]
if __name__ == '__main__':
setup(
name = NAME,
version = VERSION,
description = DESCRIPTION,
long_description = LONG_DESCRIPTION,
author = AUTHOR,
author_email = AUTHOR_EMAIL,
url = URL,
license = LICENSE,
keywords = KEYWORDS,
classifiers = CLASSIFIERS,
packages = PACKAGES,
package_data = PACKAGE_DATA,
py_modules = PY_MODULES,
setup_requires = SETUP_REQUIRES,
install_requires = INSTALL_REQUIRES,
extras_require = EXTRAS_REQUIRE,
dependency_links = DEPENDENCY_LINKS,
entry_points = ENTRY_POINTS,
namespace_packages=NAMESPACE_PACAKGES,
include_package_data = True,
zip_safe = False,
)