forked from vispy/vispy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
357 lines (301 loc) · 11.6 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
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
# -*- coding: utf-8 -*-
# Copyright (c) Vispy Development Team. All Rights Reserved.
# Distributed under the (new) BSD License. See LICENSE.txt for more info.
""" Vispy setup script.
Steps to do a new release:
Preparations:
* Test on Windows, Linux, Mac
* Make release notes
* Update API documentation and other docs that need updating.
* Install 'twine' package for uploading to PyPI
Define the version:
* update __version__ in __init__.py
* tag the tip changeset as version x.x.x; `git tag -a 'vX.Y.Z'`
Test installation:
* clear the build and dist dir (if they exist)
* python setup.py sdist
* twine upload --repository-url https://test.pypi.org/legacy/ dist/*
* pip install -i https://testpypi.python.org/pypi vispy
Generate and upload package
* python setup.py sdist
* twine upload dist/*
Announcing:
* It can be worth waiting a day for eager users to report critical bugs
* Announce in scipy-user, vispy mailing list, G+
"""
import os
import sys
import platform
from os import path as op
from distutils import log
from setuptools import setup, find_packages, Command, Extension
from setuptools.command.sdist import sdist
from setuptools.command.build_py import build_py
from setuptools.command.build_ext import build_ext as _build_ext
from setuptools.command.egg_info import egg_info
from subprocess import check_call
import numpy as np
try:
from Cython.Build import cythonize
except ImportError:
cythonize = None
log.set_verbosity(log.DEBUG)
log.info('setup.py entered')
log.info('$PATH=%s' % os.environ['PATH'])
name = 'vispy'
description = 'Interactive visualization in Python'
# Get version and docstring
__version__ = None
__doc__ = ''
docStatus = 0 # Not started, in progress, done
initFile = os.path.join(os.path.dirname(__file__), 'vispy', '__init__.py')
for line in open(initFile).readlines():
if line.startswith('version_info') or line.startswith('__version__'):
exec(line.strip())
elif line.startswith('"""'):
if docStatus == 0:
docStatus = 1
line = line.lstrip('"')
elif docStatus == 1:
docStatus = 2
if docStatus == 1:
__doc__ += line
# Special commands for building jupyter notebook extension
here = os.path.dirname(os.path.abspath(__file__))
node_root = os.path.join(here, 'js')
is_repo = os.path.exists(os.path.join(here, '.git'))
npm_path = os.pathsep.join([
os.path.join(node_root, 'node_modules', '.bin'),
os.environ.get('PATH', os.defpath),
])
def set_builtin(name, value):
if isinstance(__builtins__, dict):
__builtins__[name] = value
else:
setattr(__builtins__, name, value)
class build_ext(_build_ext):
"""Work around to bootstrap numpy includes in to extensions.
Copied from:
http://stackoverflow.com/questions/19919905/
how-to-bootstrap-numpy-installation-in-setup-py
"""
def finalize_options(self):
_build_ext.finalize_options(self)
# Prevent numpy from thinking it is still in its setup process:
set_builtin('__NUMPY_SETUP__', False)
import numpy
self.include_dirs.append(numpy.get_include())
if cythonize is None:
def cythonize(extensions, **_ignore):
"""Fake function to compile from C/C++ files.
Normally compiled from .pyx files with cython. If installed from
a source distribution (sdist) this function should be enough to
compile extensions for the C/C++ files included in the sdist.
"""
for extension in extensions:
sources = []
for sfile in extension.sources:
path, ext = os.path.splitext(sfile)
if ext in ('.pyx', '.py'):
if extension.language == 'c++':
ext = '.cpp'
else:
ext = '.c'
sfile = path + ext
if not os.path.isfile(sfile):
raise OSError("Missing cython C/C++ source file: "
"{}. Install 'cython' to compile "
"them.".format(sfile))
sources.append(sfile)
extension.sources[:] = sources
return extensions
def js_prerelease(command, strict=False):
"""decorator for building minified js/css prior to another command"""
class DecoratedCommand(command):
def run(self):
jsdeps = self.distribution.get_command_obj('jsdeps')
if not is_repo and all(os.path.exists(t) for t in jsdeps.targets):
# sdist, nothing to do
command.run(self)
return
try:
self.distribution.run_command('jsdeps')
except Exception as e:
missing = [t for t in jsdeps.targets if not os.path.exists(t)]
if strict or missing:
log.warn('rebuilding js and css failed')
if missing:
log.error('missing files: %s' % missing)
# HACK: Allow users who can't build the JS to still install vispy
if not is_repo:
raise e
log.warn('WARNING: continuing installation WITHOUT nbextension javascript')
# remove JS files from data_files so setuptools doesn't try to copy
# non-existent files
self.distribution.data_files = [x for x in self.distribution.data_files
if 'jupyter' not in x[0]]
else:
log.warn('rebuilding js and css failed (not a problem)')
log.warn(str(e))
command.run(self)
update_package_data(self.distribution)
return DecoratedCommand
def update_package_data(distribution):
"""update package_data to catch changes during setup"""
build_py = distribution.get_command_obj('build_py')
# distribution.package_data = find_package_data()
# re-init build_py options which load package_data
build_py.finalize_options()
class NPM(Command):
description = 'install package.json dependencies using npm'
user_options = []
node_modules = os.path.join(node_root, 'node_modules')
targets = [
os.path.join(here, 'vispy', 'static', 'extension.js'),
os.path.join(here, 'vispy', 'static', 'index.js')
]
def initialize_options(self):
pass
def finalize_options(self):
pass
def get_npm_name(self):
npmName = 'npm';
if platform.system() == 'Windows':
npmName = 'npm.cmd';
return npmName;
def has_npm(self):
npmName = self.get_npm_name();
try:
check_call([npmName, '--version'])
return True
except:
return False
def should_run_npm_install(self):
package_json = os.path.join(node_root, 'package.json')
node_modules_exists = os.path.exists(self.node_modules)
return self.has_npm()
def run(self):
has_npm = self.has_npm()
if not has_npm:
log.error("`npm` unavailable. If you're running this command "
"using sudo, make sure `npm` is available to sudo")
env = os.environ.copy()
env['PATH'] = npm_path
if self.should_run_npm_install():
log.info("Installing build dependencies with npm. This may take "
"a while...")
npmName = self.get_npm_name();
check_call([npmName, 'install'], cwd=node_root,
stdout=sys.stdout, stderr=sys.stderr)
os.utime(self.node_modules, None)
for t in self.targets:
if not os.path.exists(t):
msg = 'Missing file: %s' % t
if not has_npm:
msg += '\nnpm is required to build a development ' \
'version of a widget extension'
raise ValueError(msg)
# update package data in case this created new files
update_package_data(self.distribution)
extensions = [Extension('vispy.visuals.text._sdf_cpu',
[op.join('vispy', 'visuals', 'text', '_sdf_cpu.pyx')]),
]
readme = open('README.rst', 'r').read()
setup(
name=name,
version=__version__,
author='Vispy contributors',
author_email='vispy@googlegroups.com',
license='(new) BSD',
url='http://vispy.org',
download_url='https://pypi.python.org/pypi/vispy',
keywords=[
'visualization',
'OpenGl',
'ES',
'medical',
'imaging',
'3D',
'plotting',
'numpy',
'bigdata',
'ipython',
'jupyter',
'widgets',
],
description=description,
long_description=readme,
platforms='any',
provides=['vispy'],
cmdclass={
'build_py': js_prerelease(build_py),
'egg_info': js_prerelease(egg_info),
'sdist': js_prerelease(sdist, strict=True),
'jsdeps': NPM,
'build_ext': build_ext,
},
python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*',
install_requires=['numpy'],
extras_require={
'ipython-static': ['ipython'],
'ipython-vnc': ['ipython>=7'],
'ipython-webgl': ['ipywidgets>=7.0', 'ipython>=7', 'tornado'],
'pyglet': ['pyglet>=1.2'],
# 'pyqt4': [], # Why is this on PyPI, but without downloads?
# 'pyqt5': [], # Ditto.
'pyside': ['PySide'],
# 'pyside2': [], # not yet on PyPI
'sdl2': ['PySDL2'],
'wx': ['wxPython'],
'doc': ['sphinx_bootstrap_theme', 'numpydoc'],
},
packages=find_packages(),
ext_modules=cythonize(extensions),
include_dirs=[np.get_include()],
package_dir={'vispy': 'vispy'},
data_files=[
('share/jupyter/nbextensions/vispy', [
'vispy/static/extension.js',
'vispy/static/index.js',
'vispy/static/index.js.map',
]),
('etc/jupyter/nbconfig/notebook.d', ['vispy.json']),
],
include_package_data=True,
package_data={
'vispy': [op.join('io', '_data', '*'),
op.join('html', 'static', 'js', '*'),
op.join('app', 'tests', 'qt-designer.ui'),
],
'vispy.glsl': ['*.vert','*.frag', "*.glsl"],
'vispy.glsl.antialias': ['*.vert','*.frag', "*.glsl"],
'vispy.glsl.arrowheads': ['*.vert','*.frag', "*.glsl"],
'vispy.glsl.arrows': ['*.vert','*.frag', "*.glsl"],
'vispy.glsl.collections': ['*.vert','*.frag', "*.glsl"],
'vispy.glsl.colormaps': ['*.vert','*.frag', "*.glsl"],
'vispy.glsl.lines': ['*.vert','*.frag', "*.glsl"],
'vispy.glsl.markers': ['*.vert','*.frag', "*.glsl"],
'vispy.glsl.math': ['*.vert','*.frag', "*.glsl"],
'vispy.glsl.misc': ['*.vert','*.frag', "*.glsl"],
'vispy.glsl.transforms': ['*.vert','*.frag', "*.glsl"],
},
zip_safe=False,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Intended Audience :: Education',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Visualization',
'License :: OSI Approved :: BSD License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Framework :: IPython'
],
)