Metadata-Version: 1.0
Name: mongoengine-extras
Version: 0.0.1
Summary: Extra fields and utilities for mongoengine.
Home-page: https://github.com/bennylope/mongoengine-extras
Author: Ben Lopatin
Author-email: ben.lopatin@wellfireinteractive.com
License: Public Domain
Description: ====================
        mongoengine-extras
        ====================
        
        mongoengine-extras is a collection of fields (and possibly other features
        later) not included in MongoEngine, and which do not necessarily need to
        be included in MongoEngine.
        
        Currently the only features are two fields, a SlugField (as found in Django)
        and an AutoSlugField. The latter is designed to enforce a unique, auto-
        incremented slug value. It should be used in the same way as the
        AutoSlugField in django-extensions, although it's not quite there yet. For
        now you simply provide the field with the source string and the field will
        store a unique, auto-incremented slug.
        
        Installing
        ===========
        
        With setuptools installed, `python setup.py install` from source.
        
        Dependencies
        ============
        
        mongoengine-extras requires MongoEngine (which requires pymongo).
        
        Tests
        =====
        
        The tests can by run with `python setup.py test`. Tests require a MongoDB
        database running on the standard port.
Platform: any
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: Public Domain
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Database
Classifier: Topic :: Software Development :: Libraries :: Python Modules
