mirror of
https://github.com/Hopiu/django-notifications.git
synced 2026-05-04 03:24:52 +00:00
Bump version 0.7.0
This commit is contained in:
parent
56298d508e
commit
9e91cd965b
3 changed files with 39 additions and 10 deletions
|
|
@ -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
5
setup.cfg
Normal 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
|
||||
40
setup.py
40
setup.py
|
|
@ -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',
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in a new issue