forked from wlanslovenija/django-tastypie-mongoengine
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·61 lines (56 loc) · 1.9 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
61
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
try:
# Workaround for http://bugs.python.org/issue15881
import multiprocessing
except ImportError:
pass
VERSION = '0.4.6'
if __name__ == '__main__':
setup(
name = 'django-tastypie-mongoengine',
version = VERSION,
description = "MongoEngine support for django-tastypie.",
long_description = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(),
author = 'wlan slovenija',
author_email = '[email protected]',
url = 'https://github.com/wlanslovenija/django-tastypie-mongoengine',
keywords = "REST RESTful tastypie mongo mongodb mongoengine django",
license = 'AGPLv3',
packages = find_packages(exclude=('*.tests', '*.tests.*', 'tests.*', 'tests')),
classifiers = (
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
),
zip_safe = False,
install_requires = (
'Django>=1.5',
'django-tastypie>=0.9.12',
'mongoengine>=0.8.1,<0.8.2',
'python-dateutil>=2.1',
'lxml',
'defusedxml',
'PyYAML',
'biplist',
'python-mimeparse>=0.1.4',
),
test_suite = 'tests.runtests.runtests',
tests_require = (
'Django>=1.5',
'django-tastypie>=0.9.12',
'mongoengine>=0.8.1,<0.8.2',
'python-dateutil>=2.1',
'lxml',
'defusedxml',
'PyYAML',
'biplist',
'python-mimeparse>=0.1.4',
'nose',
),
)