django-notifications/setup.py
Matthew Schinckel d8567930b4 Change 'readed' field to unread.
Add a better manager/queryset. (required django-model-utils).
2012-10-23 17:20:29 +10:30

26 lines
1.1 KiB
Python

from distutils.core import setup
from notifications import __version__
setup(name='django-notifications',
version=__version__,
description='GitHub notifications alike app for Django.',
long_description=open('README.rst').read(),
author='Brant Young',
author_email='brant.young@gmail.com',
url='http://github.com/brantyoung/django-notifications',
install_requires=[
'django-model-utils>=1.1.0'
],
packages=['notifications',
'notifications.templatetags'],
package_data={'notifications': [
'templates/notifications/*.html']},
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',
'Topic :: Utilities'],
)