diff options
author | R. Tyler Ballance <tyler@slide.com> | 2009-06-28 10:05:31 +0800 |
---|---|---|
committer | James Abbatiello <abbeyj@gmail.com> | 2009-06-28 12:17:40 +0800 |
commit | a8539369bb2a55f6c9ac38ef50f99ba8d0ae1660 (patch) | |
tree | 8c207855f347cf04c3440626eb71b9290d147576 | |
parent | 4df5cb55c93c3db952e35da2523471e4f4ec8cc0 (diff) | |
download | python-cheetah-a8539369bb2a55f6c9ac38ef50f99ba8d0ae1660.tar.gz |
Minor tweak to SetupConfig format
Signed-off-by: James Abbatiello <abbeyj@gmail.com>
-rw-r--r-- | SetupConfig.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/SetupConfig.py b/SetupConfig.py index 7129671..87df62b 100644 --- a/SetupConfig.py +++ b/SetupConfig.py @@ -36,13 +36,15 @@ import os import os.path from distutils.core import Extension -ext_modules=[Extension("Cheetah._namemapper", - [os.path.join('src', 'c', '_namemapper.c')], - ), +ext_modules=[ + Extension("Cheetah._namemapper", + [os.path.join('src', 'c', '_namemapper.c')]), Extension("Cheetah._verifytype", [os.path.join('src', 'c', '_verifytype.c')]), Extension("Cheetah._filters", [os.path.join('src', 'c', '_filters.c')]), + Extension('Cheetah._template', + [os.path.join('src', 'c', '_template.c')]), ] ## Data Files and Scripts |