Don't assume request object we are passed at any point still has our custom attributes.
[django-ssify.git] / setup.py
index b3a40da..44705a2 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -7,11 +7,12 @@ from setuptools import setup, find_packages
 
 setup(
     name='django-ssify',
-    version='0.2',
+    version='0.2.2',
     author='Radek Czajka',
     author_email='radekczajka@nowoczesnapolska.org.pl',
     url='http://git.mdrn.pl/django-ssify.git',
     packages=find_packages(exclude=['tests*']),
+    package_data={'ssify': ['templates/ssify/*.html']},
     license='LICENSE',
     description='Two-phased rendering using SSI.',
     long_description=open('README.md').read(),
@@ -36,5 +37,6 @@ setup(
         "Programming Language :: Python :: 3.4",
         "Topic :: Internet :: WWW/HTTP",
         "Topic :: Software Development :: Code Generators",
-    ]
+    ],
+    zip_safe=False,
 )