summaryrefslogtreecommitdiff
path: root/setup.py
blob: b8d1b14429f317099d42bc4e6dbfef8cd50236a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env python
# $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
    
import SetupTools
import SetupConfig
configurations = (SetupConfig,)
SetupTools.run_setup( configurations )