From cfd9d789d301f3c1d74afe5a63e6c872ecefede0 Mon Sep 17 00:00:00 2001 From: Monty Taylor Date: Sat, 14 Jun 2014 18:19:04 -0700 Subject: Include the script template files - fixes #220 The rename of the script template files to be .tmpl put them into the realm of package data, rather than python files that would be bundled automatically. Include them specifically in package data so that they'll actually be installed. --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 6b263702..719a1937 100755 --- a/setup.py +++ b/setup.py @@ -100,7 +100,8 @@ with readme_file: with changes_file: long_description = readme_file.read() + '\n' + changes_file.read() -package_data = {'setuptools': ['site-patch.py']} +package_data = { + 'setuptools': ['script (dev).tmpl', 'script.tmpl', 'site-patch.py']} force_windows_specific_files = ( os.environ.get("SETUPTOOLS_INSTALL_WINDOWS_SPECIFIC_FILES") not in (None, "", "0") -- cgit v1.2.3