forked from umutbozkurt/django-rest-framework-mongoengine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·27 lines (26 loc) · 1.4 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
from distutils.core import setup
setup(
name='django-rest-framework-mongoengine',
version='1.5.2',
description='Model Serializer that supports MongoEngine, for Django Rest Framework.',
packages=['rest_framework_mongoengine',],
license='see https://github.com/umutbozkurt/django-rest-framework-mongoengine/blob/master/LICENSE',
long_description='see https://github.com/umutbozkurt/django-rest-framework-mongoengine/blob/master/README.md',
url='https://github.com/umutbozkurt/django-rest-framework-mongoengine',
download_url='https://github.com/umutbozkurt/django-rest-framework-mongoengine/releases/',
keywords=['mongoengine', 'serializer', 'django rest framework'],
author='Umut Bozkurt',
author_email='[email protected]',
requires=['mongoengine', 'djangorestframework'],
classifiers=['Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Testing',
'Topic :: Internet',
'Topic :: Internet :: WWW/HTTP :: Site Management',
'Topic :: Text Processing :: Markup :: HTML',
'Intended Audience :: Developers'
],
)