From: Zbigniew Siciarz Date: Fri, 17 Jun 2011 10:54:23 +0000 (+0200) Subject: Making django-postman installable. X-Git-Tag: 1.1.0~5 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=50ea44d675e21c851e3c96601347c4f8b3877357;p=django-postman.git Making django-postman installable. --- diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..3530532 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,4 @@ +recursive-include postman/locale * +recursive-include postman/medias * +recursive-include postman/templates * + diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..990bd8a --- /dev/null +++ b/setup.py @@ -0,0 +1,24 @@ +from setuptools import setup, find_packages + +setup( + name='django-postman', + version=__import__('postman').__version__, + description = 'A messaging application for Django', + author = 'Patrick Samson', + license = 'BSD', + packages=find_packages(exclude=('docs',)), + include_package_data=True, + classifiers = [ + 'Development Status :: 5 - Production/Stable', + 'Environment :: Web Environment', + 'Framework :: Django', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: BSD License', + 'Operating System :: OS Independent', + 'Programming Language :: Python', + ], + install_requires = [ + 'Django', + ], +) +