Skip to content

Commit a978aa9

Browse files
author
Umut Bozkurt
committed
setup.py fixed for pypi
1 parent e078b24 commit a978aa9

File tree

3 files changed

+18
-1
lines changed

3 files changed

+18
-1
lines changed

MANIFEST

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# file GENERATED by distutils, do NOT edit
2+
setup.cfg
23
setup.py
34
rest_framework_mongoengine/__init__.py
45
rest_framework_mongoengine/fields.py

setup.cfg

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[metadata]
2+
description-file = README.md

setup.py

+15-1
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,25 @@
33
setup(
44
name='django-rest-framework-mongoengine',
55
version='1.3.3',
6+
description='Model Serializer that supports MongoEngine, for Django Rest Framework.',
67
packages=['rest_framework_mongoengine',],
78
license='see https://github.com/umutbozkurt/django-rest-framework-mongoengine/blob/master/LICENSE',
89
long_description='see https://github.com/umutbozkurt/django-rest-framework-mongoengine/blob/master/README.md',
910
url='https://github.com/umutbozkurt/django-rest-framework-mongoengine',
11+
download_url='https://github.com/umutbozkurt/django-rest-framework-mongoengine/releases/tag/v1.3.3',
12+
keywords=['mongoengine', 'serializer', 'django rest framework'],
1013
author='Umut Bozkurt',
1114
author_email='[email protected]',
12-
requires=['mongoengine', 'djangorestframework']
15+
requires=['mongoengine', 'djangorestframework'],
16+
classifiers=['Development Status :: 5 - Production/Stable',
17+
'License :: OSI Approved :: MIT License',
18+
'Natural Language :: English',
19+
'Programming Language :: Python',
20+
'Topic :: Software Development :: Libraries :: Python Modules',
21+
'Topic :: Software Development :: Testing',
22+
'Topic :: Internet',
23+
'Topic :: Internet :: WWW/HTTP :: Site Management',
24+
'Topic :: Text Processing :: Markup :: HTML',
25+
'Intended Audience :: Developers'
26+
],
1327
)

0 commit comments

Comments
 (0)