Bump version 0.7.0

This commit is contained in:
Yang.Y 2015-04-21 10:25:52 +08:00
parent 56298d508e
commit 9e91cd965b
3 changed files with 39 additions and 10 deletions

View file

@ -11,8 +11,8 @@ except ImportError:
__version_info__ = {
'major': 0,
'minor': 6,
'micro': 2,
'minor': 7,
'micro': 0,
'releaselevel': 'final',
'serial': 0
}

5
setup.cfg Normal file
View file

@ -0,0 +1,5 @@
[bdist_wheel]
# This flag says that the code is written to work on both Python 2 and Python
# 3. If at all possible, it is good practice to do this. If you cannot, you
# will need to generate wheels for each Python version that you support.
universal=1

View file

@ -3,17 +3,24 @@ from notifications import __version__
setup(name='django-notifications-hq',
version=__version__,
description='GitHub notifications alike app for Django.',
long_description=open('README.rst').read(),
author='django-notifications team',
author_email='yang@yangyubo.com',
url='http://github.com/django-notifications/django-notifications',
install_requires=[
'django>=1.4',
'django-model-utils>=2.0.3',
'six>=1.9.0',
'jsonfield>=1.0.3',
],
test_requires=[
'django>=1.4',
'django-model-utils>=2.0.3',
@ -21,19 +28,36 @@ setup(name='django-notifications-hq',
'jsonfield>=1.0.3',
'pytz'
],
packages=['notifications',
'notifications.templatetags',
'notifications.migrations',
'notifications.south_migrations'
],
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'],
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'
],
keywords='django notifications github action event stream',
license='MIT',
)