summaryrefslogtreecommitdiff
path: root/SetupTools.py
diff options
context:
space:
mode:
authortavis_rudd <tavis_rudd>2007-11-03 19:44:38 +0000
committertavis_rudd <tavis_rudd>2007-11-03 19:44:38 +0000
commitf84cdad072f1dd5ecb8aa182cea44efe2742ab88 (patch)
tree1064f77c29a8f23c92f2cc56c5cfb750cec48bca /SetupTools.py
parent7eef2d9fd537c2596b2ea41cce79cc3d948a5555 (diff)
downloadpython-cheetah-f84cdad072f1dd5ecb8aa182cea44efe2742ab88.tar.gz
note about setuptools
Diffstat (limited to 'SetupTools.py')
-rw-r--r--SetupTools.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/SetupTools.py b/SetupTools.py
index 21dfb5d..d31853a 100644
--- a/SetupTools.py
+++ b/SetupTools.py
@@ -1,5 +1,5 @@
#!/usr/bin/env python
-# $Id: SetupTools.py,v 1.8 2006/01/01 23:40:54 tavis_rudd Exp $
+# $Id: SetupTools.py,v 1.9 2007/11/03 19:44:38 tavis_rudd Exp $
"""Some tools for extending and working with distutils
CREDITS: This module borrows code and ideas from M.A. Lemburg's excellent setup
@@ -8,7 +8,7 @@ tools for the mxBase package.
"""
__author__ = "Tavis Rudd <tavis@damnsimple.com>"
-__version__ = "$Revision: 1.8 $"[11:-2]
+__version__ = "$Revision: 1.9 $"[11:-2]
import os
from os import listdir
@@ -21,6 +21,9 @@ import traceback
from distutils.core import setup
if 'CHEETAH_USE_SETUPTOOLS' in os.environ:
+ # @@TR: Please note that this is for testing purposes only! PEAK setuptools
+ # is not required or recommended for installing Cheetah. Downstream
+ # package managers (linux distros, etc.) should *not* enable this.
try:
# use http://peak.telecommunity.com/DevCenter/setuptools if it's installed
# requires Py >=2.3