-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
22 lines (21 loc) · 820 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from distutils.core import setup
setup(
name='mongoengine-serialize',
version='1.2.8',
description='Mongoengine serializer',
author='Jeffrey Marvin Forones',
author_email='[email protected]',
license='MIT',
url='https://github.com/aiscenblue/mongoengine_serialize',
packages=['mongoengine_serialize'],
keywords=['serializer', 'mongoengine', 'mongoengine_serialize'], # arbitrary keywords
install_requires=['mongoengine', 'bson'],
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
]
)