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
|
#-------------------------------------------------------------------------------
#
# FBI (Frame Based Inspector) Plugin.
#
# Written by: David C. Morrill
#
# Date: 1/4/2006
#
# (c) Copyright 2006 by Enthought, Inc.
#
#-------------------------------------------------------------------------------
#-------------------------------------------------------------------------------
# Imports:
#-------------------------------------------------------------------------------
from enthought.envisage.core.core_plugin_definition \
import PluginDefinition
#-------------------------------------------------------------------------------
# The plugin definition:
#-------------------------------------------------------------------------------
PluginDefinition(
# The plugin's globally unique identifier:
id = "enthought.plugins.debug.fbi",
# The name of the class that implements the plugin:
class_name = "enthought.plugins.debug.fbi_plugin.FBIPlugin",
# General information about the plugin:
name = "FBI Plugin",
version = "1.0.0",
provider_name = "Enthought Inc",
provider_url = "www.enthought.com",
enabled = True,
autostart = True,
# The Id's of the plugins that this plugin requires:
requires = [
"enthought.envisage.core",
]
)
|