Skip to content

Commit

Permalink
Fix handling templates while installing via setup.py. Update changelo…
Browse files Browse the repository at this point in the history
…g in readme. Bump version number.
  • Loading branch information
playpauseandstop committed Jul 11, 2012
1 parent 80251ab commit 410d158
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
5 changes: 5 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,11 @@ the project's `GitHub issues
ChangeLog
=========

0.1.3
-----

+ Fix handling templates while installing via setup.py

0.1.2
-----

Expand Down
7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

setup(
name='Flask-Dropbox',
version='0.1.2',
version='0.1.3',
description='Add support of Dropbox API to the Flask applications.',
long_description=README,
author='Igor Davydenko',
Expand All @@ -23,6 +23,11 @@
install_requires=[
'Flask',
],
package_data={
'flask_dropbox': [
'templates/dropbox/*.html'
],
},
packages=[
'flask_dropbox',
],
Expand Down

0 comments on commit 410d158

Please sign in to comment.