2012-07-22 13:14:44 +00:00
|
|
|
from distutils.core import setup
|
|
|
|
|
from notifications import __version__
|
|
|
|
|
|
2012-10-25 04:46:06 +00:00
|
|
|
setup(name='django-notifications-hq',
|
2012-07-22 13:14:44 +00:00
|
|
|
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',
|
2012-10-23 06:50:29 +00:00
|
|
|
install_requires=[
|
2012-10-24 23:10:19 +00:00
|
|
|
'django>=1.4',
|
2015-02-04 15:25:20 +00:00
|
|
|
'django-model-utils>=2.0.3',
|
2015-03-20 11:03:41 +00:00
|
|
|
'six>=1.9.0',
|
|
|
|
|
'jsonfield>=1.0.3',
|
2012-10-23 06:50:29 +00:00
|
|
|
],
|
2015-03-28 08:25:56 +00:00
|
|
|
test_requires=[
|
|
|
|
|
'django>=1.4',
|
|
|
|
|
'django-model-utils>=2.0.3',
|
|
|
|
|
'six>=1.9.0',
|
|
|
|
|
'jsonfield>=1.0.3',
|
|
|
|
|
'pytz'
|
|
|
|
|
],
|
2012-07-22 13:14:44 +00:00
|
|
|
packages=['notifications',
|
2012-10-25 04:46:06 +00:00
|
|
|
'notifications.templatetags',
|
2015-03-08 21:30:33 +00:00
|
|
|
'notifications.migrations',
|
|
|
|
|
'notifications.south_migrations'
|
2012-10-25 04:46:06 +00:00
|
|
|
],
|
2012-07-22 13:14:44 +00:00
|
|
|
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'],
|
|
|
|
|
)
|