# HG changeset patch # User Ludovic Chabant # Date 1389514948 28800 # Node ID 81e39ae8aef0ddbc150cf53fc2327fc50c93d7ac # Parent f307d4cdc3fbbca20fbc1f777e880b4b6fa769d6 Fixed missing files from the Pypi package and the production build. diff -r f307d4cdc3fb -r 81e39ae8aef0 Gruntfile.js --- 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/**']} ] } diff -r f307d4cdc3fb -r 81e39ae8aef0 MANIFEST.in --- 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 diff -r f307d4cdc3fb -r 81e39ae8aef0 setup.py --- 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,