summaryrefslogtreecommitdiff
path: root/SetupConfig.py
diff options
context:
space:
mode:
authorR. Tyler Ballance <tyler@monkeypox.org>2009-08-14 15:11:24 -0700
committerR. Tyler Ballance <tyler@monkeypox.org>2009-08-14 15:11:24 -0700
commit988f6da0fc7c211f654352ec1453f0ef168da7cf (patch)
tree50ab6734ef1cacb71ff2ba30da76a3cfce51365e /SetupConfig.py
parentf8c53e6fdaf28e1461456bf844c59a10e15bee68 (diff)
parent53144fffd7754476b8b866b7b52fa9faab1548e4 (diff)
downloadpython-cheetah-988f6da0fc7c211f654352ec1453f0ef168da7cf.tar.gz
Merge branch 'next' into performance
Left some rename conflicts partially unresolved, need to move src/c/ to cheetah/c/ in the next commit Conflicts: SetupConfig.py cheetah/_namemapper.c src/_namemapper.c src/c/_namemapper.c
Diffstat (limited to 'SetupConfig.py')
-rw-r--r--SetupConfig.py11
1 files changed, 6 insertions, 5 deletions
diff --git a/SetupConfig.py b/SetupConfig.py
index 9508e3c..52b6926 100644
--- a/SetupConfig.py
+++ b/SetupConfig.py
@@ -1,6 +1,6 @@
#-------Main Package Settings-----------#
name = 'Cheetah'
-from src.Version import Version as version
+from cheetah.Version import Version as version
maintainer = "R. Tyler Ballance"
author = "Tavis Rudd"
author_email = "cheetahtemplate-discuss@lists.sf.net"
@@ -11,7 +11,6 @@ packages = ['Cheetah',
'Cheetah.Tests',
'Cheetah.Tools',
'Cheetah.Utils',
- 'Cheetah.contrib',
]
classifiers = [line.strip() for line in '''\
#Development Status :: 4 - Beta
@@ -30,7 +29,7 @@ classifiers = [line.strip() for line in '''\
Topic :: Text Processing'''.splitlines() if not line.strip().startswith('#')]
del line
-package_dir = {'Cheetah':'src'}
+package_dir = {'Cheetah':'cheetah'}
import os
import os.path
@@ -52,10 +51,12 @@ ext_modules=[
scripts = ['bin/cheetah-compile',
'bin/cheetah',
]
+
if sys.platform == "win32":
scripts.append('bin/cheetah.bat')
-data_files = ['recursive: src *.tmpl *.txt LICENSE README TODO CHANGES',
- ]
+
+data_files = ['recursive: src *.tmpl *.txt LICENSE README TODO CHANGES',]
+
if not os.getenv('CHEETAH_INSTALL_WITHOUT_SETUPTOOLS'):
try:
from setuptools import setup