Skip to content

Commit d463237

Browse files
committed
adding setup.py
1 parent a79f35d commit d463237

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

extras_mongoengine/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import fields
2+
3+
__all__ = ('fields')

setup.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/usr/bin/env python
2+
from distutils.core import setup
3+
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

Comments
 (0)