-
-
Notifications
You must be signed in to change notification settings - Fork 318
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
Rémy HUBSCHER
committed
Jan 23, 2017
1 parent
542c059
commit da200c7
Showing
2 changed files
with
8 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,18 +18,18 @@ def read_file(filename): | |
|
||
setup( | ||
name="django-tinymce", | ||
version='2.5.0.dev0', | ||
version='2.5.0', | ||
packages=find_packages(), | ||
include_package_data=True, | ||
author="Aljosa Mohorovic", | ||
author_email="[email protected]", | ||
description=("A Django application that contains a widget to render a " | ||
"form field as a TinyMCE editor."), | ||
long_description = README + "\n\n" + CHANGELOG, | ||
license = "MIT License", | ||
keywords = "django widget tinymce", | ||
long_description=README + "\n\n" + CHANGELOG, | ||
license="MIT License", | ||
keywords="django widget tinymce", | ||
zip_safe=False, | ||
classifiers = [ | ||
classifiers=[ | ||
'Development Status :: 5 - Production/Stable', | ||
'Environment :: Web Environment', | ||
'Framework :: Django', | ||
|
@@ -45,7 +45,7 @@ def read_file(filename): | |
'Topic :: Software Development :: Libraries :: Application Frameworks', | ||
'Topic :: Software Development :: Libraries :: Python Modules', | ||
], | ||
platforms = ['any'], | ||
url = "https://github.com/aljosa/django-tinymce", | ||
platforms=['any'], | ||
url="https://github.com/aljosa/django-tinymce", | ||
test_suite='runtests.runtests', | ||
) |