Mercurial > wikked
changeset 162:81e39ae8aef0
Fixed missing files from the Pypi package and the production build.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Sun, 12 Jan 2014 00:22:28 -0800 |
parents | f307d4cdc3fb |
children | cba3a31595c7 |
files | Gruntfile.js MANIFEST.in setup.py |
diffstat | 3 files changed, 9 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/Gruntfile.js Fri Jan 10 23:12:10 2014 -0800 +++ b/Gruntfile.js Sun Jan 12 00:22:28 2014 -0800 @@ -74,6 +74,7 @@ production: { files: [ {expand: true, cwd: 'wikked/assets/', dest: 'wikked/static/', src: ['js/require.js']}, + {expand: true, cwd: 'wikked/assets/', dest: 'wikked/static/', src: ['js/pagedown/**']}, {expand: true, cwd: 'wikked/assets/', dest: 'wikked/static/', src: ['font-awesome/font/**']} ] }
--- a/MANIFEST.in Fri Jan 10 23:12:10 2014 -0800 +++ b/MANIFEST.in Sun Jan 12 00:22:28 2014 -0800 @@ -1,5 +1,8 @@ +include wikked/resources/* +include wikked/templates/*.html include wikked/static/css/wikked.min.css include wikked/static/img/*.png include wikked/static/js/require.js include wikked/static/js/wikked.min.js +include wikked/static/js/pagdown/*.js
--- a/setup.py Fri Jan 10 23:12:10 2014 -0800 +++ b/setup.py Sun Jan 12 00:22:28 2014 -0800 @@ -10,7 +10,7 @@ setup( name='Wikked', - version='0.1.0.0', + version='0.1.0.3', description=("A wiki engine entirely managed with text files " "stored in a revision control system."), author='Ludovic Chabant', @@ -33,7 +33,7 @@ 'Whoosh>=2.4.1', 'argparse>=1.2.1', 'pybars>=0.0.4', - 'python-hglib>=1.0', + 'python-hglib', 'twill>=0.9', 'wsgiref>=0.1.2' ], @@ -41,11 +41,13 @@ include_package_data=True, package_data={ 'wikked': [ + 'resources/*', 'templates/*.html', 'static/css/wikked.min.css', 'static/img/*.png', 'static/js/require.js', - 'static/js/wikked.min.js' + 'static/js/wikked.min.js', + 'static/js/pagedown/*.js' ] }, zip_safe=False,