fixed setup.py

This commit is contained in:
Daniel Knüttel 2018-01-25 13:13:27 +01:00
parent 9e57e20449
commit 2430c79f9a
2 changed files with 3 additions and 3 deletions

View File

@ -100,7 +100,7 @@ def get_template_meta(name, modifiers = []):
get_template_meta("AGPL", modifiers = ["single-file"])
"""
templates_avail = json.loads(get_resource_string("licenses_avail.json"))
templates_avail = get_templates_available()
if( not name in templates_avail):
raise TemplateException("Unknown license: {}".format(name))
@ -117,7 +117,7 @@ def get_template_meta(name, modifiers = []):
else:
meta_name = ".".join((name, "meta"))
try:
meta = json.loads(get_resource_string(meta_name, True))
meta = json.loads(get_resource_string(meta_name, False))
except:
continue

View File

@ -4,7 +4,7 @@ setup(
name = "licor",
version = "0.0.1",
packages = find_packages(),
package_data = {"licor": ["templates/*"]},
package_data = {"licor": ["templates/*", "templates/*/*"]},
author = "Daniel Knüttel",
author_email = "daniel.knuettel@daknuett.eu",
install_requires = ["docopt"],