summaryrefslogtreecommitdiff
path: root/SetupConfig.py
diff options
context:
space:
mode:
authorR. Tyler Ballance <tyler@monkeypox.org>2009-08-14 19:34:43 -0700
committerR. Tyler Ballance <tyler@monkeypox.org>2009-08-14 19:34:43 -0700
commitf902efca620e0ab0ead60dd73ba28e5f99a3631a (patch)
tree89643735620a3cb764040fcef7e882e2859c8207 /SetupConfig.py
parent988f6da0fc7c211f654352ec1453f0ef168da7cf (diff)
downloadpython-cheetah-f902efca620e0ab0ead60dd73ba28e5f99a3631a.tar.gz
Move src/c/ to cheetah/c/ and update SetupConfig.py appropraitely
Diffstat (limited to 'SetupConfig.py')
-rw-r--r--SetupConfig.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/SetupConfig.py b/SetupConfig.py
index 52b6926..781ff0d 100644
--- a/SetupConfig.py
+++ b/SetupConfig.py
@@ -38,13 +38,13 @@ from distutils.core import Extension
ext_modules=[
Extension("Cheetah._namemapper",
- [os.path.join('src', 'c', '_namemapper.c')]),
+ [os.path.join('cheetah', 'c', '_namemapper.c')]),
Extension("Cheetah._verifytype",
- [os.path.join('src', 'c', '_verifytype.c')]),
+ [os.path.join('cheetah', 'c', '_verifytype.c')]),
Extension("Cheetah._filters",
- [os.path.join('src', 'c', '_filters.c')]),
+ [os.path.join('cheetah', 'c', '_filters.c')]),
Extension('Cheetah._template',
- [os.path.join('src', 'c', '_template.c')]),
+ [os.path.join('cheetah', 'c', '_template.c')]),
]
## Data Files and Scripts