File: api.py

package info (click to toggle)
python-envisageplugins 3.2.0-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 1,600 kB
  • sloc: python: 6,968; sh: 11; makefile: 8; lisp: 1
file content (23 lines) | stat: -rw-r--r-- 873 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#-----------------------------------------------------------------------------
#
#  Copyright (c) 2006 by Enthought, Inc.
#  All rights reserved.
#
#  Author: Dave Peterson <dpeterson@enthought.com>
#
#-----------------------------------------------------------------------------

# IDs of services provided by this plugin
from services import IPROJECT_MODEL, IPROJECT_UI

# Commonly referred to classes within this plugin
from factory_definition import FactoryDefinition
from model_service import ModelService
from project import Project
from project_action import ProjectAction
from project_factory import ProjectFactory
from view.project_view import ProjectView
# FIXME: Add back this import when it actually works :)
#from editor.project_editor import ProjectEditor

#### EOF #####################################################################