summaryrefslogtreecommitdiff
path: root/setup.py
blob: 54ac3a0c7bd8281347248cef1e6a32e3765a52f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env python
# $Id: setup.py,v 1.11 2002/03/02 20:26:17 tavis_rudd Exp $

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