From: Patrick Samson Date: Wed, 22 Jun 2011 16:44:09 +0000 (+0200) Subject: distribution setup adjustments X-Git-Tag: 1.1.0~4 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=d1923e05fe562e882f6b2ba2db56037d21658eb2;p=django-postman.git distribution setup adjustments --- diff --git a/setup.py b/setup.py index 990bd8a..3b60ffe 100644 --- 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', ], )