Repository URL to install this package:
Version:
5.0.0 ▾
|
chaco
/
__init__.py
|
---|
# Copyright (c) 2005-2014 by Enthought, Inc.
# All rights reserved.
""" Two-dimensional plotting application toolkit.
Part of the Chaco project of the Enthought Tool Suite.
"""
try:
from chaco._version import full_version as __version__ # noqa
except ImportError:
__version__ = "not-built"
__requires__ = [
"traits>=6.2.0", "traitsui", "pyface>=7.2.0", "numpy", "enable>=5.2.0"
]
__extras_require__ = {
'examples': ['encore', 'scipy', 'pandas']
}