Metadata-Version: 1.1
Name: Camelot
Version: 12.06.29
Summary: A python GUI framework on top of Sqlalchemy and Qt, inspired by the Django admin interface. Start building desktop applications at warp speed, simply by adding some additional information to you model definition.
Home-page: http://www.python-camelot.com
Author: Conceptive Engineering
Author-email: project-camelot@conceptive.be
License: GPL, Commercial
Description: ##########
         Camelot
        ##########
        
        Camelot provides components for building business applications on top of **Python**, **SQLAlchemy** and **Qt**.  
        It is inspired by the Django admin interface.  
        A simple piece of code as this::
        
          class Task( Entity ):
              short_description = Column( Unicode( 60 ), nullable = False )
              due_date = Column( Date() )
              long_description = Column( RichText() )
          
              class Admin( EntityAdmin ):
                  list_display = ['short_description', 'due_date']
              
        Is enough to define your database schema, define the mapping between the
        database and objects, and to create a user friendly desktop GUI.
        
        Building applications with Camelot has these advantages :
        
          *  Use high quality editors together with the *Qt* Model-View framework
          
          *  Editors are bound to the model without writing binding code
          
          *  User friendliness and performance out of the box
          
          *  Tons of built in functions such as data import and export, printing, 
             backup and restore
             
          *  Documentation on creating the various parts of an application like wizards
             and reports
        
        For more information, refer to :
        
         - `Home page <http://www.python-camelot.com>`_.
         - `Screenshots <http://www.python-camelot.com>`_.
         - `Documentation <http://www.python-camelot.com/docs.html>`_.
        
        
        
Keywords: qt pyqt sqlalchemy elixir desktop gui framework
Platform: Linux
Platform: Windows
Platform: OS X
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Win32 (MS Windows)
Classifier: Environment :: X11 Applications
Classifier: Environment :: X11 Applications :: Gnome
Classifier: Environment :: X11 Applications :: GTK
Classifier: Environment :: X11 Applications :: KDE
Classifier: Environment :: X11 Applications :: Qt
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: License :: Other/Proprietary License
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python
Classifier: Topic :: Database :: Front-Ends
Classifier: Topic :: Office/Business
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
