forked from biolab/orange3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·287 lines (242 loc) · 8.56 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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
#! /usr/bin/env python3
import os
import sys
import subprocess
from setuptools import find_packages, Command
if sys.version_info < (3, 4):
sys.exit('Orange requires Python >= 3.4')
try:
from numpy.distutils.core import setup
have_numpy = True
except ImportError:
from setuptools import setup
have_numpy = False
from distutils.command.build_ext import build_ext
NAME = 'Orange3'
VERSION = '3.11.0'
ISRELEASED = False
# full version identifier including a git revision identifier for development
# build/releases (this is filled/updated in `write_version_py`)
FULLVERSION = VERSION
DESCRIPTION = 'Orange, a component-based data mining framework.'
README_FILE = os.path.join(os.path.dirname(__file__), 'README.md')
LONG_DESCRIPTION = open(README_FILE).read()
AUTHOR = 'Bioinformatics Laboratory, FRI UL'
AUTHOR_EMAIL = '[email protected]'
URL = 'http://orange.biolab.si/'
LICENSE = 'GPLv3+'
KEYWORDS = (
'data mining',
'machine learning',
'artificial intelligence',
)
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 :: POSIX',
'Operating System :: Microsoft :: Windows',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Visualization',
'Topic :: Software Development :: Libraries :: Python Modules',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
)
requirements = ['requirements-core.txt', 'requirements-gui.txt']
INSTALL_REQUIRES = sorted(set(
line.partition('#')[0].strip()
for file in (os.path.join(os.path.dirname(__file__), file)
for file in requirements)
for line in open(file)
) - {''})
EXTRAS_REQUIRE = {
':python_version<="3.4"': ["typing"],
}
ENTRY_POINTS = {
"orange.canvas.help": (
"html-index = Orange.widgets:WIDGET_HELP_PATH",
),
"gui_scripts": (
"orange-canvas = Orange.canvas.__main__:main",
),
}
EXTRAS_REQUIRE = {
':python_version<="3.4"': ["typing"],
}
# Return the git revision as a string
def git_version():
"""Return the git revision as a string.
Copied from numpy setup.py
"""
def _minimal_ext_cmd(cmd):
# construct minimal environment
env = {}
for k in ['SYSTEMROOT', 'PATH']:
v = os.environ.get(k)
if v is not None:
env[k] = v
# LANGUAGE is used on win32
env['LANGUAGE'] = 'C'
env['LANG'] = 'C'
env['LC_ALL'] = 'C'
out = subprocess.Popen(cmd, stdout=subprocess.PIPE, env=env).communicate()[0]
return out
try:
out = _minimal_ext_cmd(['git', 'rev-parse', 'HEAD'])
GIT_REVISION = out.strip().decode('ascii')
except OSError:
GIT_REVISION = "Unknown"
return GIT_REVISION
def write_version_py(filename='Orange/version.py'):
# Copied from numpy setup.py
cnt = """
# THIS FILE IS GENERATED FROM ORANGE SETUP.PY
short_version = '%(version)s'
version = '%(version)s'
full_version = '%(full_version)s'
git_revision = '%(git_revision)s'
release = %(isrelease)s
if not release:
version = full_version
short_version += ".dev"
"""
global FULLVERSION
FULLVERSION = VERSION
if os.path.exists('.git'):
GIT_REVISION = git_version()
elif os.path.exists('Orange/version.py'):
# must be a source distribution, use existing version file
import imp
version = imp.load_source("Orange.version", "Orange/version.py")
GIT_REVISION = version.git_revision
else:
GIT_REVISION = "Unknown"
if not ISRELEASED:
FULLVERSION += '.dev0+' + GIT_REVISION[:7]
a = open(filename, 'w')
try:
a.write(cnt % {'version': VERSION,
'full_version': FULLVERSION,
'git_revision': GIT_REVISION,
'isrelease': str(ISRELEASED)})
finally:
a.close()
def configuration(parent_package='', top_path=None):
if os.path.exists('MANIFEST'):
os.remove('MANIFEST')
from numpy.distutils.misc_util import Configuration
config = Configuration(None, parent_package, top_path)
# Avoid non-useful msg:
# "Ignoring attempt to set 'name' (from ... "
config.set_options(ignore_setup_xxx_py=True,
assume_default_configuration=True,
delegate_options_to_subpackages=True,
quiet=True)
config.add_subpackage('Orange')
return config
PACKAGES = find_packages()
# Extra non .py, .{so,pyd} files that are installed within the package dir
# hierarchy
PACKAGE_DATA = {
"Orange": ["datasets/*.{}".format(ext)
for ext in ["tab", "csv", "basket", "info", "dst", "metadata"]],
"Orange.canvas": ["icons/*.png", "icons/*.svg"],
"Orange.canvas.styles": ["*.qss", "orange/*.svg"],
"Orange.canvas.application.workflows": ["*.ows"],
"Orange.canvas.report": ["icons/*.svg", "*.html"],
"Orange.widgets": ["icons/*.png",
"icons/*.svg",
"_highcharts/*"],
"Orange.widgets.tests": ["datasets/*.tab",
"workflows/*.ows"],
"Orange.widgets.data": ["icons/*.svg",
"icons/paintdata/*.png",
"icons/paintdata/*.svg"],
"Orange.widgets.data.tests": ["origin1/*.tab",
"origin2/*.tab"],
"Orange.widgets.evaluate": ["icons/*.svg"],
"Orange.widgets.model": ["icons/*.svg"],
"Orange.widgets.visualize": ["icons/*.svg"],
"Orange.widgets.unsupervised": ["icons/*.svg"],
"Orange.widgets.utils": ["_webview/*.js"],
"Orange.tests": ["xlsx_files/*.xlsx", "*.tab", "*.basket", "*.csv"]
}
class LintCommand(Command):
"""A setup.py lint subcommand developers can run locally."""
description = "run code linter(s)"
user_options = []
initialize_options = finalize_options = lambda self: None
def run(self):
"""Lint current branch compared to a reasonable master branch"""
sys.exit(subprocess.call(r'''
set -eu
upstream="$(git remote -v |
awk '/[@\/]github.com[:\/]biolab\/orange3[\. ]/{ print $1; exit }')"
git fetch -q $upstream master
best_ancestor=$(git merge-base HEAD refs/remotes/$upstream/master)
.travis/check_pylint_diff $best_ancestor
''', shell=True, cwd=os.path.dirname(os.path.abspath(__file__))))
class CoverageCommand(Command):
"""A setup.py coverage subcommand developers can run locally."""
description = "run code coverage"
user_options = []
initialize_options = finalize_options = lambda self: None
def run(self):
"""Check coverage on current workdir"""
sys.exit(subprocess.call(r'''
coverage run --source=Orange -m unittest -v Orange.tests
echo; echo
coverage report
coverage html &&
{ echo; echo "See also: file://$(pwd)/htmlcov/index.html"; echo; }
''', shell=True, cwd=os.path.dirname(os.path.abspath(__file__))))
class build_ext_error(build_ext):
def initialize_options(self):
raise SystemExit(
"Cannot compile extensions. numpy is required to build Orange."
)
def setup_package():
write_version_py()
cmdclass = {
'lint': LintCommand,
'coverage': CoverageCommand,
}
if have_numpy:
extra_args = {
"configuration": configuration
}
else:
# substitute a build_ext command with one that raises an error when
# building. In order to fully support `pip install` we need to
# survive a `./setup egg_info` without numpy so pip can properly
# query our install dependencies
extra_args = {}
cmdclass["build_ext"] = build_ext_error
setup(
name=NAME,
version=FULLVERSION,
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,
install_requires=INSTALL_REQUIRES,
extras_require=EXTRAS_REQUIRE,
entry_points=ENTRY_POINTS,
zip_safe=False,
test_suite='Orange.tests.suite',
cmdclass=cmdclass,
**extra_args
)
if __name__ == '__main__':
setup_package()