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

Commit

Permalink
stripped out WebwareExp stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
tavis_rudd committed Jan 3, 2005
1 parent cbbef52 commit ea625aa
Showing 1 changed file with 5 additions and 16 deletions.
21 changes: 5 additions & 16 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,27 +1,16 @@
#!/usr/bin/env python
# $Id: setup.py,v 1.14 2002/03/28 18:14:48 tavis_rudd Exp $
# $Id: setup.py,v 1.15 2005/01/03 17:58:41 tavis_rudd Exp $
import os

try:
os.remove('MANIFEST') # to avoid those bloody out-of-date manifests!!
except:
pass


try: # see if WebwareExp's Setup procedure can be used
from src._properties import Version, Description
settings= {'name': 'Cheetah',
'version':Version,
'description':Description,
}
from Webware.Setup import SetupManager
SetupManager._rebuildManifestTemplate = 0
SetupManager(searchPath=['.'],settings=settings)
except:
import SetupTools
import SetupConfig
configurations = (SetupConfig,)
SetupTools.run_setup( configurations )
import SetupTools
import SetupConfig
configurations = (SetupConfig,)
SetupTools.run_setup( configurations )



Expand Down

0 comments on commit ea625aa

Please sign in to comment.