forked from holoviz/panel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
266 lines (230 loc) · 7.73 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
#!/usr/bin/env python
import os
import shutil
import sys
import json
from setuptools import setup, find_packages
from setuptools.command.develop import develop
from setuptools.command.install import install
from setuptools.command.sdist import sdist
import pyct.build
def get_setup_version(reponame):
"""
Helper to get the current version from either git describe or the
.version file (if available).
"""
basepath = os.path.split(__file__)[0]
version_file_path = os.path.join(basepath, reponame, '.version')
try:
from param import version
except Exception:
version = None
if version is not None:
return version.Version.setup_version(basepath, reponame, archive_commit="$Format:%h$")
else:
print("WARNING: param>=1.6.0 unavailable. If you are installing a package, "
"this warning can safely be ignored. If you are creating a package or "
"otherwise operating in a git repository, you should install param>=1.6.0.")
return json.load(open(version_file_path, 'r'))['version_string']
def _build_paneljs():
from bokeh.ext import build
from panel.compiler import bundle_resources
print("Building custom models:")
panel_dir = os.path.join(os.path.dirname(__file__), "panel")
build(panel_dir)
print("Bundling custom model resources:")
bundle_resources()
if sys.platform != "win32":
# npm can cause non-blocking stdout; so reset it just in case
import fcntl
flags = fcntl.fcntl(sys.stdout, fcntl.F_GETFL)
fcntl.fcntl(sys.stdout, fcntl.F_SETFL, flags&~os.O_NONBLOCK)
class CustomDevelopCommand(develop):
"""Custom installation for development mode."""
def run(self):
_build_paneljs()
develop.run(self)
class CustomInstallCommand(install):
"""Custom installation for install mode."""
def run(self):
_build_paneljs()
install.run(self)
class CustomSdistCommand(sdist):
"""Custom installation for sdist mode."""
def run(self):
_build_paneljs()
sdist.run(self)
_COMMANDS = {
'develop': CustomDevelopCommand,
'install': CustomInstallCommand,
'sdist': CustomSdistCommand,
}
try:
from wheel.bdist_wheel import bdist_wheel
class CustomBdistWheelCommand(bdist_wheel):
"""Custom bdist_wheel command to force cancelling qiskit-terra wheel
creation."""
def run(self):
"""Do nothing so the command intentionally fails."""
_build_paneljs()
bdist_wheel.run(self)
_COMMANDS['bdist_wheel'] = CustomBdistWheelCommand
except Exception:
pass
########## dependencies ##########
install_requires = [
'bokeh >=2.3.0dev13',
'param >=1.10.0',
'pyviz_comms >=0.7.4',
'markdown',
'requests',
'tqdm',
'pyct >=0.4.4'
]
_recommended = [
'notebook >=5.4',
'holoviews >1.14.1',
'matplotlib',
'pillow',
'plotly'
]
_tests = [
'flake8',
'parameterized',
'pytest',
'scipy',
'nbsmoke >=0.2.0',
'pytest-cov',
'codecov',
'folium',
'ipympl',
'twine',
'pandas',
'ipython >=7.0'
]
extras_require = {
'examples': [
'hvplot',
'plotly',
'altair',
'streamz',
'vega_datasets',
'vtk',
'scikit-learn',
'datashader',
'jupyter_bokeh',
'django',
'channels',
'pyvista',
'ipywidgets',
'ipywidgets_bokeh',
'ipyvolume',
'ipyleaflet'
],
'tests': _tests,
'recommended': _recommended,
'doc': _recommended + [
'nbsite >=0.6.1',
'nbconvert <6.0',
'sphinx_holoviz_theme',
'selenium',
'phantomjs',
'graphviz',
'lxml',
]
}
extras_require['all'] = sorted(set(sum(extras_require.values(), [])))
# Superset of what's in pyproject.toml (includes non-python
# dependencies). Also, pyproject.toml isn't supported by all tools
# anyway (e.g. older versions of pip, or conda - which also supports
# non-python dependencies). Note that setup_requires isn't used
# because it doesn't work well with pip.
extras_require['build'] = [
'param >=1.9.2',
'pyct >=0.4.4',
'setuptools >=30.3.0',
'bokeh >=2.0.0',
'pyviz_comms >=0.6.0'
]
setup_args = dict(
name='panel',
version=get_setup_version("panel"),
description='A high level app and dashboarding solution for Python.',
long_description=open('README.md').read() if os.path.isfile('README.md') else 'Consult README.md',
long_description_content_type="text/markdown",
author="HoloViz",
author_email="developers@holoviz.org",
maintainer="HoloViz",
maintainer_email="developers@holoviz.org",
platforms=['Windows', 'Mac OS X', 'Linux'],
license='BSD',
url='http://panel.holoviz.org',
cmdclass=_COMMANDS,
packages=find_packages(),
include_package_data=True,
data_files=[
# like `jupyter serverextension enable --sys-prefix`
(
"etc/jupyter/jupyter_notebook_config.d",
["jupyter-config/jupyter_notebook_config.d/panel-client-jupyter.json"],
),
],
classifiers=[
"License :: OSI Approved :: BSD License",
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Information Technology",
"Intended Audience :: Legal Industry",
"Intended Audience :: Other Audience",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Office/Business",
"Topic :: Office/Business :: Financial",
"Topic :: Software Development :: Libraries"],
python_requires=">=3.6",
entry_points={
'console_scripts': [
'panel = panel.command:main'
]
},
install_requires=install_requires,
extras_require=extras_require,
tests_require=extras_require['tests']
)
def clean_js_version(version):
version = version.replace('-', '')
for dev in ('a', 'b', 'rc'):
version = version.replace(dev+'.', dev)
return version
if __name__ == "__main__":
example_path = os.path.join(os.path.dirname(os.path.abspath(__file__)),
'panel', 'examples')
if 'develop' not in sys.argv and 'egg_info' not in sys.argv:
pyct.build.examples(example_path, __file__, force=True)
version = setup_args['version']
if 'post' not in version:
with open('./panel/package.json') as f:
package_json = json.load(f)
js_version = package_json['version']
version = version.split('+')[0]
if any(dev in version for dev in ('a', 'b', 'rc')) and not '-' in js_version:
raise ValueError(f"panel.js dev versions ({js_version}) must "
"must separate dev suffix with a dash, e.g. "
"v1.0.0rc1 should be v1.0.0-rc.1.")
if version != 'None' and version != clean_js_version(js_version):
raise ValueError(f"panel.js version ({js_version}) does not match "
f"panel version ({version}). Cannot build release.")
setup(**setup_args)
if os.path.isdir(example_path):
shutil.rmtree(example_path)