forked from django-nonrel/djangotoolbox
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request django-nonrel#64 from kavdev/master
django 1.8 compatibility in the db module
- Loading branch information
Showing
5 changed files
with
123 additions
and
60 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
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 |
---|---|---|
|
@@ -9,27 +9,28 @@ | |
pass | ||
|
||
setup(name='djangotoolbox', | ||
version='1.7.0', | ||
description=DESCRIPTION, | ||
long_description=LONG_DESCRIPTION, | ||
author='Waldemar Kornewald', | ||
author_email='[email protected]', | ||
url='https://github.com/django-nonrel/djangotoolbox', | ||
packages=find_packages(), | ||
license='3-clause BSD', | ||
zip_safe=False, | ||
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', | ||
'Programming Language :: Python :: 2.5', | ||
'Programming Language :: Python :: 2.6', | ||
'Programming Language :: Python :: 2.7', | ||
'Topic :: Database', | ||
'Topic :: Software Development :: Libraries :: Python Modules', | ||
], | ||
version='1.8.0', | ||
description=DESCRIPTION, | ||
long_description=LONG_DESCRIPTION, | ||
author='Waldemar Kornewald', | ||
author_email='[email protected]', | ||
url='https://github.com/django-nonrel/djangotoolbox', | ||
packages=find_packages(), | ||
license='3-clause BSD', | ||
zip_safe=False, | ||
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', | ||
'Programming Language :: Python :: 2.5', | ||
'Programming Language :: Python :: 2.6', | ||
'Programming Language :: Python :: 2.7', | ||
'Programming Language :: Python :: 3.4', | ||
'Topic :: Database', | ||
'Topic :: Software Development :: Libraries :: Python Modules', | ||
], | ||
) |