- commit
- 4cf58887f90fb6e3627490b23af83bf185092edd
- parent
- 7c8c1886e6b9f4fac66b9ae3280aa4ea86724010
- Author
- Tobias Bengfort <tobias.bengfort@gmx.net>
- Date
- 2014-09-26 18:26
mv to package this fixes the install location of non-python files
Diffstat
10 files changed, 8 insertions, 19 deletions
diff --git a/MANIFEST.in b/MANIFEST.in
@@ -1,9 +1,9 @@ 1 1 include README.rst 2 2 include example.cfg3 -1 include index.html4 -1 include static/color.css5 -1 include static/favicon.ico6 -1 include static/jqlite.js7 -1 include static/mustache.js8 -1 include static/plutopluto.css9 -1 include static/plutopluto.js-1 3 include plutopluto/index.html -1 4 include plutopluto/static/color.css -1 5 include plutopluto/static/favicon.ico -1 6 include plutopluto/static/jqlite.js -1 7 include plutopluto/static/mustache.js -1 8 include plutopluto/static/plutopluto.css -1 9 include plutopluto/static/plutopluto.js
diff --git a/plutopluto.py b/plutopluto/__init__.py
diff --git a/index.html b/plutopluto/index.html
diff --git a/static/color.css b/plutopluto/static/color.css
diff --git a/static/favicon.ico b/plutopluto/static/favicon.ico
Binary files differ.diff --git a/static/jqlite.js b/plutopluto/static/jqlite.js
diff --git a/static/mustache.js b/plutopluto/static/mustache.js
diff --git a/static/plutopluto.css b/plutopluto/static/plutopluto.css
diff --git a/static/plutopluto.js b/plutopluto/static/plutopluto.js
diff --git a/setup.py b/setup.py
@@ -13,18 +13,7 @@ setup( 13 13 url='https://github.com/xi/plutopluto', 14 14 author='Tobias Bengfort', 15 15 author_email='tobias.bengfort@posteo.de',16 -1 py_modules=['plutopluto'],17 -1 data_files=[18 -1 ('', ['index.html']),19 -1 ('static', [20 -1 'static/color.css',21 -1 'static/favicon.ico',22 -1 'static/jqlite.js',23 -1 'static/mustache.js',24 -1 'static/plutopluto.css',25 -1 'static/plutopluto.js',26 -1 ]),27 -1 ],-1 16 packages=['plutopluto'], 28 17 include_package_data=True, 29 18 install_requires=[ 30 19 'argparse',