forked from MongoEngine/django-mongoengine
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
60 lines (48 loc) · 1.62 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
"""
Django-MongoEngine
------------------
Django support for MongoDB using MongoEngine.
Links
`````
* `development version
<https://github.com/MongoEngine/django-mongoengine/raw/master#egg=Django-MongoEngine-dev>`_
"""
from setuptools import setup, find_packages
import sys, os
__version__ = '0.2.1'
__description__ = 'Django support for MongoDB via MongoEngine',
__license__ = 'BSD'
__author__ = 'Ross Lawley',
__email__ = '[email protected]',
sys.path.insert(0, os.path.dirname(__file__))
REQUIRES = [i.strip() for i in open("requirements.txt").readlines()]
setup(
name='django-mongoengine',
version=__version__,
url='https://github.com/mongoengine/django-mongoengine',
download_url='https://github.com/mongoengine/django-mongoengine/tarball/master',
license=__license__,
author=__author__,
author_email=__email__,
description=__description__,
long_description=__doc__,
test_suite='nose.collector',
zip_safe=False,
platforms='any',
install_requires=REQUIRES,
packages=find_packages(exclude=('doc', 'docs',)),
include_package_data=True,
# use python setup.py nosetests to test
setup_requires=['nose', 'coverage'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules',
'Framework :: Django'
]
)