-
Notifications
You must be signed in to change notification settings - Fork 657
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c676de8
commit 187fc6b
Showing
6 changed files
with
95 additions
and
84 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
VERSION = '3.0.8' | ||
VERSION = "3.0.9" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,32 +8,32 @@ def read(fname): | |
|
||
|
||
setup( | ||
name='django-grappelli', | ||
version='3.0.8', | ||
description='A jazzy skin for the Django Admin-Interface.', | ||
long_description=read('README.rst'), | ||
url='http://django-grappelli.readthedocs.org', | ||
name="django-grappelli", | ||
version="3.0.9", | ||
description="A jazzy skin for the Django Admin-Interface.", | ||
long_description=read("README.rst"), | ||
url="http://django-grappelli.readthedocs.org", | ||
project_urls={ | ||
'Source': 'https://github.com/sehmaschine/django-grappelli', | ||
"Source": "https://github.com/sehmaschine/django-grappelli", | ||
}, | ||
download_url='', | ||
author='Patrick Kranzlmueller, Axel Swoboda (vonautomatisch)', | ||
author_email='[email protected]', | ||
license='BSD', | ||
packages=find_packages(exclude=['test_project']), | ||
download_url="", | ||
author="Patrick Kranzlmueller, Axel Swoboda (vonautomatisch)", | ||
author_email="[email protected]", | ||
license="BSD", | ||
packages=find_packages(exclude=["test_project"]), | ||
include_package_data=True, | ||
install_requires=[], | ||
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 :: 3', | ||
'Programming Language :: Python :: 3.8', | ||
'Programming Language :: Python :: 3.9', | ||
'Programming Language :: Python :: 3.10', | ||
"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 :: 3", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
], | ||
zip_safe=False, | ||
) |