Skip to content

Commit 9f94ba5

Browse files
author
Jan Schrewe
committed
Version bump and more info in setup.py
1 parent 24f16f4 commit 9f94ba5

File tree

1 file changed

+15
-4
lines changed

1 file changed

+15
-4
lines changed

setup.py

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python
22

3-
from distutils.core import setup
3+
from setuptools import setup
44
from subprocess import call
55

66
def convert_readme():
@@ -11,14 +11,25 @@ def convert_readme():
1111
return open('README.txt').read()
1212

1313
setup(name='mongodbforms',
14-
version='0.1.3',
14+
version='0.1.4',
1515
description="An implementation of django forms using mongoengine.",
1616
author='Jan Schrewe',
1717
author_email='jan@schafproductions.com',
1818
url='http://www.schafproductions.com/projects/django-mongodb-forms/',
1919
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+
],
2230
license='New BSD License',
2331
long_description=convert_readme(),
32+
include_package_data=True,
33+
zip_safe=False,
34+
install_requires=['setuptools', 'django>=1.3', 'mongoengine',],
2435
)

0 commit comments

Comments
 (0)