Skip to content

Commit

Permalink
add setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
thoas authored and samluescher committed Aug 30, 2010
1 parent 78bdcb3 commit 2359c20
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
import os
from distutils.core import setup

def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()

setup(
name='django-persistent-messages',
version='0.1',
description='A Django app for unified and persistent user messages/notifications, built on top of Django\'s messages framework',
long_description=read('README.md'),
author='philomat',
license='BSD',
url='http://github.com/philomat/django-persistent-messages',
keywords = ['messages', 'django', 'persistent',],
packages=[
'persistent_messages',
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
zip_safe=False,
)

0 comments on commit 2359c20

Please sign in to comment.