Metadata-Version: 1.0
Name: Camelot
Version: 10.07.02
Summary: A python GUI framework on top of Sqlalchemy, Elixir and PyQt, 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
        ##########
        
        A python GUI framework on top of  Sqlalchemy  and PyQt, inspired by the Django admin interface. 
        Start building desktop applications at warp speed, simply by adding some additional information to you 
        model definition::
        
          class Movie(Entity):
            title = Field(Unicode(60), required=True)
            short_description = Field(Unicode(512))
            release_date = Field(Date)
            genre = Field(Unicode(15))
        
            class Admin(EntityAdmin):
              verbose_name = 'Movie'
              list_display = ['title', 'short_description', 'release_date', 'genre']
              
        This piece of code is enough to define your database schema and to create a user friendly 
        desktop GUI.
        
        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
