1
1
#!/usr/bin/env python
2
2
3
- from distutils . core import setup
3
+ from setuptools import setup
4
4
from subprocess import call
5
5
6
6
def convert_readme ():
@@ -11,14 +11,25 @@ def convert_readme():
11
11
return open ('README.txt' ).read ()
12
12
13
13
setup (name = 'mongodbforms' ,
14
- version = '0.1.3 ' ,
14
+ version = '0.1.4 ' ,
15
15
description = "An implementation of django forms using mongoengine." ,
16
16
author = 'Jan Schrewe' ,
17
17
author_email = 'jan@schafproductions.com' ,
18
18
url = 'http://www.schafproductions.com/projects/django-mongodb-forms/' ,
19
19
packages = ['mongodbforms' ,],
20
- package_data = {
21
- },
20
+ package_data = {},
21
+ classifiers = [
22
+ 'Development Status :: 3 - Alpha' ,
23
+ 'Environment :: Web Environment' ,
24
+ 'Intended Audience :: Developers' ,
25
+ 'License :: OSI Approved :: BSD License' ,
26
+ 'Operating System :: OS Independent' ,
27
+ 'Programming Language :: Python' ,
28
+ 'Framework :: Django' ,
29
+ ],
22
30
license = 'New BSD License' ,
23
31
long_description = convert_readme (),
32
+ include_package_data = True ,
33
+ zip_safe = False ,
34
+ install_requires = ['setuptools' , 'django>=1.3' , 'mongoengine' ,],
24
35
)
0 commit comments