Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
chaco / __init__.py
Size: Mime:
#  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']
}