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
|
# Author: Prabhu Ramachandran, Gael Varoquaux
# Copyright (c) 2004-2024, Enthought, Inc.
# License: BSD Style.
""" A tool for easy and interactive visualization of data.
Part of the Mayavi project of the Enthought Tool Suite.
"""
__version__ = '4.8.3'
__requires__ = [
'apptools',
'configobj',
'envisage',
'numpy',
'pyface>=6.1.1',
'pygments', # This is only needed for the Qt backend but we add it anyway.
'traits>=6.0.0',
'traitsui>=7.0.0',
'packaging',
'importlib_resources; python_version<"3.11"',
'puremagic'
]
__extras_require__ = {
'app': [
'envisage',
],
}
def _jupyter_nbextension_paths():
return [dict(
section="notebook",
# the path is relative to the `mayavi` directory
src="tools/static",
# directory in the `nbextension/` namespace
dest="mayavi",
require="mayavi/x3d/x3dom"
)]
|