comparison 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
comparison
equal deleted inserted replaced
161:f307d4cdc3fb 162:81e39ae8aef0
8 return fp.read() 8 return fp.read()
9 9
10 10
11 setup( 11 setup(
12 name='Wikked', 12 name='Wikked',
13 version='0.1.0.0', 13 version='0.1.0.3',
14 description=("A wiki engine entirely managed with text files " 14 description=("A wiki engine entirely managed with text files "
15 "stored in a revision control system."), 15 "stored in a revision control system."),
16 author='Ludovic Chabant', 16 author='Ludovic Chabant',
17 author_email='ludovic@chabant.com', 17 author_email='ludovic@chabant.com',
18 url="http://bolt80.com/wikked/", 18 url="http://bolt80.com/wikked/",
31 'SQLAlchemy>=0.8.3', 31 'SQLAlchemy>=0.8.3',
32 'Werkzeug>=0.8.3', 32 'Werkzeug>=0.8.3',
33 'Whoosh>=2.4.1', 33 'Whoosh>=2.4.1',
34 'argparse>=1.2.1', 34 'argparse>=1.2.1',
35 'pybars>=0.0.4', 35 'pybars>=0.0.4',
36 'python-hglib>=1.0', 36 'python-hglib',
37 'twill>=0.9', 37 'twill>=0.9',
38 'wsgiref>=0.1.2' 38 'wsgiref>=0.1.2'
39 ], 39 ],
40 scripts=['wk.py'], 40 scripts=['wk.py'],
41 include_package_data=True, 41 include_package_data=True,
42 package_data={ 42 package_data={
43 'wikked': [ 43 'wikked': [
44 'resources/*',
44 'templates/*.html', 45 'templates/*.html',
45 'static/css/wikked.min.css', 46 'static/css/wikked.min.css',
46 'static/img/*.png', 47 'static/img/*.png',
47 'static/js/require.js', 48 'static/js/require.js',
48 'static/js/wikked.min.js' 49 'static/js/wikked.min.js',
50 'static/js/pagedown/*.js'
49 ] 51 ]
50 }, 52 },
51 zip_safe=False, 53 zip_safe=False,
52 classifiers=[ 54 classifiers=[
53 'Development Status :: 3 - Alpha', 55 'Development Status :: 3 - Alpha',