File: fbi_plugin_definition.py

package info (click to toggle)
python-envisageplugins 3.1.2-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 1,616 kB
  • ctags: 1,970
  • sloc: python: 7,047; makefile: 11; sh: 11; lisp: 1
file content (44 lines) | stat: -rw-r--r-- 1,333 bytes parent folder | download | duplicates (3)
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",
    ]
)