From 25abe18969ac3a179c6e61098e24c0bcbecc7df7 Mon Sep 17 00:00:00 2001 From: Carl Meyer Date: Mon, 13 Jul 2009 18:33:42 -0400 Subject: [PATCH] replace include_package_data with manual package_data --- setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/setup.py b/setup.py index c7b5592..34818d8 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,6 @@ setup( 'Programming Language :: Python', 'Framework :: Django', ], - include_package_data=True, + package_data= {'': ['*.txt', '*.css', '*.png', '*.js', '*.html']}, zip_safe=False, - setup_requires=['setuptools_bzr'], )