2015-10-20 02:19:03 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
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__,
|
2015-04-21 02:25:52 +00:00
|
|
|
|
2012-07-22 13:14:44 +00:00
|
|
|
description='GitHub notifications alike app for Django.',
|
2015-04-21 02:25:52 +00:00
|
|
|
|
2012-07-22 13:14:44 +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
|
|
|
|
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-04-21 02:25:52 +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'
|
|
|
|
|
],
|
2015-04-21 02:25:52 +00:00
|
|
|
|
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'
|
2015-09-24 09:03:54 +00:00
|
|
|
],
|
2015-04-21 02:25:52 +00:00
|
|
|
|
2012-07-22 13:14:44 +00:00
|
|
|
package_data={'notifications': [
|
2015-09-24 09:03:54 +00:00
|
|
|
'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',
|
2012-07-22 13:14:44 +00:00
|
|
|
)
|