Skip to content

Commit bd8af7b

Browse files
committed
Version v0.3
1 parent 4c1fc54 commit bd8af7b

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

adminplus/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
Django-AdminPlus module
33
"""
44

5-
VERSION = (0, 2, 1)
5+
VERSION = (0, 3)
66
__version__ = '.'.join(map(str, VERSION))

setup.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
description='Add new pages to the Django admin.',
99
long_description=open('README.rst').read(),
1010
author='James Socol',
11-
author_email='james@mozilla.com',
11+
author_email='me@jamessocol.com',
1212
url='http://github.com/jsocol/django-adminplus',
1313
license='BSD',
1414
packages=find_packages(exclude=['test_settings', 'test_urlconf']),
@@ -24,6 +24,12 @@
2424
'License :: OSI Approved :: BSD License',
2525
'Operating System :: OS Independent',
2626
'Programming Language :: Python',
27+
'Programming Language :: Python :: 2',
28+
'Programming Language :: Python :: 2.6',
29+
'Programming Language :: Python :: 2.7',
30+
'Programming Language :: Python :: 3',
31+
'Programming Language :: Python :: 3.2',
32+
'Programming Language :: Python :: 3.3',
2733
'Topic :: Software Development :: Libraries :: Python Modules',
2834
]
2935
)

0 commit comments

Comments
 (0)