Skip to content

Commit 9e91cd9

Browse files
committed
Bump version 0.7.0
1 parent 56298d5 commit 9e91cd9

File tree

3 files changed

+39
-10
lines changed

3 files changed

+39
-10
lines changed

notifications/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111

1212
__version_info__ = {
1313
'major': 0,
14-
'minor': 6,
15-
'micro': 2,
14+
'minor': 7,
15+
'micro': 0,
1616
'releaselevel': 'final',
1717
'serial': 0
1818
}

setup.cfg

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

setup.py

+32-8
Original file line numberDiff line numberDiff line change
@@ -3,37 +3,61 @@
33

44
setup(name='django-notifications-hq',
55
version=__version__,
6+
67
description='GitHub notifications alike app for Django.',
8+
79
long_description=open('README.rst').read(),
10+
811
author='django-notifications team',
12+
913
author_email='yang@yangyubo.com',
14+
1015
url='http://github.com/django-notifications/django-notifications',
16+
1117
install_requires=[
1218
'django>=1.4',
1319
'django-model-utils>=2.0.3',
1420
'six>=1.9.0',
1521
'jsonfield>=1.0.3',
1622
],
23+
1724
test_requires=[
1825
'django>=1.4',
1926
'django-model-utils>=2.0.3',
2027
'six>=1.9.0',
2128
'jsonfield>=1.0.3',
2229
'pytz'
2330
],
31+
2432
packages=['notifications',
2533
'notifications.templatetags',
2634
'notifications.migrations',
2735
'notifications.south_migrations'
2836
],
37+
2938
package_data={'notifications': [
3039
'templates/notifications/*.html']},
31-
classifiers=['Development Status :: 5 - Production/Stable',
32-
'Environment :: Web Environment',
33-
'Framework :: Django',
34-
'Intended Audience :: Developers',
35-
'License :: OSI Approved :: BSD License',
36-
'Operating System :: OS Independent',
37-
'Programming Language :: Python',
38-
'Topic :: Utilities'],
40+
41+
classifiers=[ 'Development Status :: 5 - Production/Stable',
42+
'Environment :: Web Environment',
43+
'Framework :: Django',
44+
'Intended Audience :: Developers',
45+
'License :: OSI Approved :: BSD License',
46+
'Operating System :: OS Independent',
47+
# Specify the Python versions you support here. In particular, ensure
48+
# that you indicate whether you support Python 2, Python 3 or both.
49+
'Programming Language :: Python',
50+
'Programming Language :: Python :: 2',
51+
'Programming Language :: Python :: 2.6',
52+
'Programming Language :: Python :: 2.7',
53+
'Programming Language :: Python :: 3',
54+
'Programming Language :: Python :: 3.2',
55+
'Programming Language :: Python :: 3.3',
56+
'Programming Language :: Python :: 3.4',
57+
'Topic :: Utilities'
58+
],
59+
60+
keywords='django notifications github action event stream',
61+
62+
license='MIT',
3963
)

0 commit comments

Comments
 (0)