Skip to content

Commit

Permalink
fixed setup.py and minor corrections to example app
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelgrinberg committed Nov 5, 2013
1 parent d8a30b8 commit b50acac
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
1 change: 0 additions & 1 deletion example/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@

class PageDownFormExample(Form):
pagedown = PageDownField('Enter your markdown')
pp = PageDownField('Enter your markdown')
submit = SubmitField('Submit')

@app.route('/', methods = ['GET', 'POST'])
Expand Down
8 changes: 8 additions & 0 deletions example/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
Flask==0.10.1
Flask-PageDown==0.1.1
Flask-WTF==0.9.3
Jinja2==2.7.1
MarkupSafe==0.18
WTForms==1.0.5
Werkzeug==0.9.4
itsdangerous==0.23
1 change: 0 additions & 1 deletion example/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ <h1>Flask-PageDown Demo</h1>
<b>{{ form.pagedown.label }}</b>:
{{ form.pagedown(rows = 10, style = 'width:100%') }}
</div>
{{ form.pp() }}
<div>{{ form.submit() }}</div>
</form>
</div>
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@

setup(
name='Flask-PageDown',
version='0.1.0',
version='0.1.1',
url='http://github.com/miguelgrinberg/flask-pagedown/',
license='MIT',
author='Miguel Grinberg',
author_email='[email protected]',
description='Implementation of StackOverflow\'s "PageDown" markdown editor for Flask-WTF.',
long_description=__doc__,
py_modules=['flask_pagedown'],
packages=['flask_pagedown'],
zip_safe=False,
include_package_data=True,
platforms='any',
Expand Down

0 comments on commit b50acac

Please sign in to comment.