diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2013-05-22 09:01:41 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2013-05-22 09:01:41 -0400 |
commit | 42bb03c932d7a13a42b639f62a3f982629e2c4f8 (patch) | |
tree | dcaeec1b740d811985b7e290f3d9afa1d34829e6 | |
parent | 7f2c5b56fcb7c9fce2dac9b0974fed8ae21cf82d (diff) | |
download | ipsutils-42bb03c932d7a13a42b639f62a3f982629e2c4f8.tar.gz |
Fix inclusion of .tpl file
-rwxr-xr-x | setup.py | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -23,7 +23,11 @@ setup(name='ipsutils', author='Joseph Hunkeler', author_email='jhunk@stsci.edu', url='http://www.stsci.edu/~jhunk/ips', + include_package_data = True, + package_data = { + 'ipsutils': ['tpl/*.tpl'], + }, packages=['ipsutils', 'ipsutils/tpl'], - scripts={'ipsbuild.py', 'ipsbuild-setuptree.py'}, + scripts=['ipsbuild.py', 'ipsbuild-setuptree.py'], platforms=['sunos5', 'linux2'] ) |