Metadata-Version: 1.1
Name: sacrud-deform
Version: 0.1.6
Summary: Form generator for SQLAlchemy models.
Home-page: http://github.com/sacrud/sacrud_deform/
Author: Svintsov Dmitry
Author-email: root@uralbash.ru
License: MIT
Description: |Build Status| |Coverage Status| |Stories in Progress| |PyPI|
        
        .. |Build Status| image:: https://travis-ci.org/sacrud/sacrud_deform.svg?branch=master
           :target: https://travis-ci.org/sacrud/sacrud_deform
        .. |Coverage Status| image:: https://coveralls.io/repos/sacrud/sacrud_deform/badge.png?branch=master
           :target: https://coveralls.io/r/sacrud/sacrud_deform?branch=master
        .. |Stories in Progress| image:: https://badge.waffle.io/sacrud/sacrud_deform.png?label=in%20progress&title=In%20Progress
           :target: http://waffle.io/sacrud/sacrud_defrom
        .. |PyPI| image:: http://img.shields.io/pypi/dm/sacrud_deform.svg
           :target: https://pypi.python.org/pypi/sacrud_deform/
        
        sacrud_deform
        =============
        
        Form generotor for SQLAlchemy models.
        
        Install
        =======
        
        develop version from source
        
        .. code-block:: bash
        
          pip install git+https://github.com/sacrud/sacrud_deform.git
        
        
        .. code-block:: bash
        
          pip install sacrud_deform
        
        Use
        ===
        
        .. code-block:: python
        
            from sacrud_deform import SacrudForm
        
            form = SacrudForm(obj=obj,
                              dbsession=DBSession,
                              request=request,
                              table=MyModel)
            form_html = form().render()
        
        Support and Development
        =======================
        
        To report bugs, use the `issue tracker
        <https://github.com/sacrud/sacrud_deform/issues>`_
        or `waffle board <https://waffle.io/sacrud/sacrud_deform>`_.
        
        We welcome any contribution: suggestions, ideas, commits with new futures, bug
        fixes, refactoring, docs, tests, translations etc.
        
        If you have question, contact me sacrud@uralbash.ru or IRC channel #sacrud
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Framework :: Pyramid 
Classifier: Topic :: Internet
Classifier: Topic :: Database
