diff --git a/pitz/__init__.py b/pitz/__init__.py index 9ce869a..fa3ecdb 100644 --- a/pitz/__init__.py +++ b/pitz/__init__.py @@ -11,7 +11,7 @@ import logging -__version__ = "1.0" +__version__ = "1.0.3" # This bugs me. I don't like how instead of just defining stuff, I'm diff --git a/pitz/jinja2templates/__init__.py b/pitz/jinja2templates/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/setup.py b/setup.py index 949c387..afb70af 100644 --- a/setup.py +++ b/setup.py @@ -36,7 +36,6 @@ 'nose', 'jinja2', 'Tempita', - # -*- Extra requirements: -*- ], @@ -85,4 +84,8 @@ test_suite = 'nose.collector', + package_data = { + '': ['*.html', '*.txt'], + }, + )