From ef9e5334a333f40668dccfb9d6d00ef9ce72e0a2 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Sun, 27 Dec 2009 00:13:21 +0000 Subject: [PATCH] Finally managed to get the package to include the template... no idea what I should do with the static file dependencies though --- MANIFEST.in | 10 ++-------- setup.py | 2 +- 2 files changed, 3 insertions(+), 9 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 3524aaa..50a41c9 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,9 +1,3 @@ -README.txt -setup.py -cropper/__init__.py -cropper/admin.py -cropper/models.py -cropper/tests.py -cropper/views.py -cropper/templates/cropper/crop_admin_interface.html +include README.txt +recursive-include cropper *.py *.html diff --git a/setup.py b/setup.py index 2bef845..de9b693 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ package_data = { 'cropper': ['templates/cropper/*.html'] }, - version = '0.1.4a', + version = '0.1.5a', description = 'Image cropping for the Django admin', author = 'Simon Willison', author_email = 'simon@simonwillison.net',