forked from wpjunior/django-mongotools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (23 loc) · 811 Bytes
/
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='django-mongotools',
version='0.1dev',
description='ClassViews, Form mongoengine support for django',
author='Wilson Pinto Júnior',
author_email='[email protected]',
url='http://github.com/wpjunior/django-mongotools/',
packages=find_packages(exclude=['examples', 'examples.*']),
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: GPL License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
zip_safe=False,
tests_require=['django==1.3', 'mongoengine']
)