-
Notifications
You must be signed in to change notification settings - Fork 211
/
Copy pathsetup.py
40 lines (35 loc) · 1.25 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
28
29
30
31
32
33
34
35
36
37
38
39
40
from setuptools import setup, find_packages
import django_mongodb_engine as distmeta
DESCRIPTION = 'MongoDB backend for Django-nonrel'
LONG_DESCRIPTION = None
try:
LONG_DESCRIPTION = open('README.rst').read()
except:
pass
setup(name='django-mongodb-engine',
version='.'.join(map(str, distmeta.__version__)),
author=distmeta.__author__,
author_email=distmeta.__contact__,
url=distmeta.__homepage__,
license='2-clause BSD',
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
install_requires=['pymongo>=2.8', 'djangotoolbox>=1.6.0'],
packages=find_packages(exclude=['tests', 'tests.*']),
zip_safe=False,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Database',
'Topic :: Internet',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)