Mercurial > wikked
diff setup.py @ 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 | adc70e861804 |
line wrap: on
line diff
--- 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,