Commit cfd9d789 authored by Monty Taylor's avatar Monty Taylor

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.
parent 1f83ddb9
...@@ -100,7 +100,8 @@ with readme_file: ...@@ -100,7 +100,8 @@ with readme_file:
with changes_file: with changes_file:
long_description = readme_file.read() + '\n' + changes_file.read() 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 = ( force_windows_specific_files = (
os.environ.get("SETUPTOOLS_INSTALL_WINDOWS_SPECIFIC_FILES") os.environ.get("SETUPTOOLS_INSTALL_WINDOWS_SPECIFIC_FILES")
not in (None, "", "0") not in (None, "", "0")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment