Moved templates inside of the package to enable setuptools distribution via package_data.

This commit is contained in:
Michael Lazar
2015-10-15 01:44:33 -07:00
parent aa2f810069
commit 77a6c71119
6 changed files with 5 additions and 5 deletions

View File

@@ -54,8 +54,8 @@ def main():
data['copyright'] = rtv.__copyright__
# Escape dashes is all of the sections
data = {k:v.replace('-', r'\-') for k,v in data.items()}
print('Reading from %s/templates/rtv.1.template' % ROOT)
with open(os.path.join(ROOT, 'templates/rtv.1.template')) as fp:
print('Reading from %s/rtv/templates/rtv.1.template' % ROOT)
with open(os.path.join(ROOT, 'rtv/templates/rtv.1.template')) as fp:
template = fp.read()
print('Populating template')
out = template.format(**data)