diff --git a/cinje/block/module.py b/cinje/block/module.py index 868b7b7..8e2dfdd 100644 --- a/cinje/block/module.py +++ b/cinje/block/module.py @@ -78,9 +78,9 @@ def __call__(self, context): yield Line(0, '') - if __debug__: - yield Line(0, '__mapping__ = [' + ','.join(str(i) for i in mapping) + ']') + #if __debug__: + # yield Line(0, '__mapping__ = [' + ','.join(str(i) for i in mapping) + ']') - yield Line(0, '__gzmapping__ = b"' + red(mapping).replace('"', '\"') + '"') + #yield Line(0, '__gzmapping__ = b"' + red(mapping).replace('"', '\"') + '"') context.flag.remove('init') diff --git a/setup.py b/setup.py index 8324aee..e1e275c 100755 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ import sys import codecs -from setuptools import setup +from setuptools import setup, find_packages if sys.version_info < (2, 7): @@ -59,7 +59,7 @@ "Topic :: Utilities", ], - packages = ['cinje'], + packages = find_packages(), include_package_data = True, package_data = {'': ['README.rst', 'LICENSE.txt']}, namespace_packages = [],