django-notifications/setup.py

67 lines
2.2 KiB
Python
Raw Normal View History

2015-10-20 02:19:03 +00:00
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from distutils.core import setup
from notifications import __version__
setup(name='django-notifications-hq',
version=__version__,
2015-04-21 02:25:52 +00:00
description='GitHub notifications alike app for Django.',
2015-04-21 02:25:52 +00:00
long_description=open('README.rst').read(),
2015-04-21 02:25:52 +00:00
2015-04-21 01:53:28 +00:00
author='django-notifications team',
2015-04-21 02:25:52 +00:00
2015-04-21 01:53:28 +00:00
author_email='yang@yangyubo.com',
2015-04-21 02:25:52 +00:00
2015-04-21 01:53:28 +00:00
url='http://github.com/django-notifications/django-notifications',
2015-04-21 02:25:52 +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',
'six>=1.9.0',
'jsonfield>=1.0.3',
],
2015-04-21 02:25:52 +00:00
test_requires=[
'django>=1.4',
'django-model-utils>=2.0.3',
'six>=1.9.0',
'jsonfield>=1.0.3',
'pytz'
],
2015-04-21 02:25:52 +00:00
packages=['notifications',
'notifications.templatetags',
'notifications.migrations',
'notifications.south_migrations'
],
2015-04-21 02:25:52 +00:00
package_data={'notifications': [
'templates/notifications/*.html', 'static/notifications/*.js']},
classifiers=['Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Utilities'
],
2015-04-21 02:25:52 +00:00
keywords='django notifications github action event stream',
license='MIT',
)