Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
greyli committed May 29, 2018
1 parent a266208 commit 810667c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -194,7 +194,7 @@ Release date: 2018/5/29

- Add basic unit test.
- Update resources, fix plugin register bug, use CKEditor 4.9.2.
- Add configuration parameter `CKEDITOR_ENABLE_CODESNIPPET`, used to enable/disable ``Code Snippet plugin.
- Add configuration parameter `CKEDITOR_ENABLE_CODESNIPPET`, used to enable/disable `Code Snippet` plugin.
- Added Markdown plugin into built-in resouce, enabled markdown mode via `CKEDITOR_ENABLE_MARKDOWN`.
- Added configuration parameter `CKEDITOR_EXTRA_PLUGINS`, a list used to register extra plugins.

Expand Down
11 changes: 2 additions & 9 deletions setup.py
Expand Up @@ -16,24 +16,17 @@
<https://github.com/greyli/flask-ckeditor>`_ , which you can check for more
details.
"""
from os import path
from codecs import open
from setuptools import setup

basedir = path.abspath(path.dirname(__file__))
with open(path.join(basedir, 'README.md'), encoding='utf-8') as f:
long_description = f.read()

setup(
name='Flask-CKEditor',
version='0.4',
version='0.4.0',
url='http://github.com/greyli/flask-ckeditor',
license='MIT',
author='Grey Li',
author_email='withlihui@gmail.com',
description='CKEditor integration for Flask.',
long_description=long_description,
long_description_content_type='text/markdown',
long_description=__doc__,
packages=['flask_ckeditor'],
zip_safe=False,
include_package_data=True,
Expand Down

0 comments on commit 810667c

Please sign in to comment.