Skip to content
This repository has been archived by the owner on Mar 8, 2018. It is now read-only.

Commit

Permalink
note about setuptools
Browse files Browse the repository at this point in the history
  • Loading branch information
tavis_rudd committed Nov 3, 2007
1 parent 7eef2d9 commit f84cdad
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions 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
Expand All @@ -8,7 +8,7 @@
"""

__author__ = "Tavis Rudd <tavis@damnsimple.com>"
__version__ = "$Revision: 1.8 $"[11:-2]
__version__ = "$Revision: 1.9 $"[11:-2]

import os
from os import listdir
Expand All @@ -21,6 +21,9 @@

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
Expand Down

0 comments on commit f84cdad

Please sign in to comment.