forked from jschrewe/django-mongoadmin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
34 lines (31 loc) · 1.08 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
#!/usr/bin/env python
from setuptools import setup
from subprocess import call
def convert_readme():
try:
call(["pandoc", "-t", "rst", "-o", "README.txt", "readme.md"])
except OSError:
pass
return open('README.txt').read()
setup(name='mongoadmin',
version='0.1.4',
description="A replacement for django's admin that works with mongodb.",
author='Jan Schrewe',
author_email='[email protected]',
url='http://www.schafproductions.com/projects/mongo-admin/',
packages=['mongoadmin', 'mongoadmin.templatetags',],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
license='New BSD License',
long_description=convert_readme(),
include_package_data=True,
zip_safe=False,
install_requires=['setuptools', 'django>=1.3', 'mongoengine>=0.6', 'mongodbforms',],
)