]> git.parisson.com Git - django-postman.git/commitdiff
distribution setup adjustments
authorPatrick Samson <pk.samson@gmail.com>
Wed, 22 Jun 2011 16:44:09 +0000 (18:44 +0200)
committerPatrick Samson <pk.samson@gmail.com>
Wed, 22 Jun 2011 16:44:09 +0000 (18:44 +0200)
setup.py

index 990bd8a72b5bc63a3c67bfac889112a1056b499b..3b60ffe1d623d13db45f40cf08fdb4356ec4b1a9 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -3,12 +3,18 @@ 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',
+    description='User-to-User messaging system for Django, with gateway to AnonymousUser,' \
+        ' moderation and thread management, user & exchange filters, inbox/sent/archives/trash folders,' \
+        ' support for apps: auto-complete, notification, mailer.',
+    long_description=open('docs/index.rst').read().split('\n----\n', 1)[0],
+    author='Patrick Samson',
+    author_email='maxcom@laposte.net',
+    url='http://bitbucket.org/psam/django-postman/overview',
+    license='BSD',
     packages=find_packages(exclude=('docs',)),
     include_package_data=True,
-    classifiers = [
+    keywords='django messages messaging email moderation',
+    classifiers=[
         'Development Status :: 5 - Production/Stable',
         'Environment :: Web Environment',
         'Framework :: Django',
@@ -16,8 +22,9 @@ setup(
         'License :: OSI Approved :: BSD License',
         'Operating System :: OS Independent',
         'Programming Language :: Python',
+        'Topic :: Communications :: Email',
     ],
-    install_requires = [
+    install_requires=[
         'Django',
     ],
 )