We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a79f35d commit d463237Copy full SHA for d463237
extras_mongoengine/__init__.py
@@ -0,0 +1,3 @@
1
+import fields
2
+
3
+__all__ = ('fields')
setup.py
@@ -0,0 +1,10 @@
+#!/usr/bin/env python
+from distutils.core import setup
4
+setup(name='extras_mongoengine',
5
+ version='0.1',
6
+ description='MongoEngine Extras - Field Types and any other wizardry.',
7
+ url='https://github.com/MongoEngine/extras-mongoengine/',
8
+ install_requires=['mongoengine>=0.8.6'],
9
+ packages=['extras_mongoengine'],
10
+ )
0 commit comments