__init__.py 494 B

1234567891011121314151617181920
  1. """ Mixer is an object generation tool for your application.
  2. It's supported Django_ ORM, SQLAlchemy_ ORM, Pony_ ORM, Peewee_ ORM,
  3. Mongoengine_ ODM and etc.
  4. Mixer is very useful for testing and fixtures replacement.
  5. :copyright: 2013 by Kirill Klenov.
  6. :license: BSD, see LICENSE for more details.
  7. """
  8. from __future__ import unicode_literals
  9. # Module information
  10. # ==================
  11. __version__ = "6.1.3"
  12. __project__ = "mixer"
  13. __author__ = "horneds <horneds@gmail.com>"
  14. __license__ = "BSD"