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 e895487 commit 2700862Copy full SHA for 2700862
setup.py
@@ -2,14 +2,21 @@
2
3
import django_mongodb_engine as distmeta
4
5
+DESCRIPTION = 'MongoDB backend for Django-nonrel'
6
+LONG_DESCRIPTION = None
7
+try:
8
+ LONG_DESCRIPTION = open('README.rst').read()
9
+except:
10
+ pass
11
12
setup(name='django-mongodb-engine',
13
version='.'.join(map(str, distmeta.__version__)),
14
author=distmeta.__author__,
15
author_email=distmeta.__contact__,
16
url=distmeta.__homepage__,
17
license='2-clause BSD',
- description="MongoDB backend for Django",
18
+ description=DESCRIPTION,
19
+ long_description=LONG_DESCRIPTION,
20
install_requires=['pymongo', 'djangotoolbox>=1.6.0'],
21
packages=find_packages(exclude=['tests', 'tests.*']),
22
zip_safe=False,
0 commit comments