1234567891011121314151617181920 |
- """ Mixer is an object generation tool for your application.
- It's supported Django_ ORM, SQLAlchemy_ ORM, Pony_ ORM, Peewee_ ORM,
- Mongoengine_ ODM and etc.
- Mixer is very useful for testing and fixtures replacement.
- :copyright: 2013 by Kirill Klenov.
- :license: BSD, see LICENSE for more details.
- """
- from __future__ import unicode_literals
- # Module information
- # ==================
- __version__ = "6.1.3"
- __project__ = "mixer"
- __author__ = "horneds <horneds@gmail.com>"
- __license__ = "BSD"
|