]> git.parisson.com Git - django-postman.git/commitdiff
Making django-postman installable.
authorZbigniew Siciarz <antyqjon@gmail.com>
Fri, 17 Jun 2011 10:54:23 +0000 (12:54 +0200)
committerZbigniew Siciarz <antyqjon@gmail.com>
Fri, 17 Jun 2011 10:54:23 +0000 (12:54 +0200)
MANIFEST.in [new file with mode: 0644]
setup.py [new file with mode: 0644]

diff --git a/MANIFEST.in b/MANIFEST.in
new file mode 100644 (file)
index 0000000..3530532
--- /dev/null
@@ -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 (file)
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',
+    ],
+)
+