Changeset 1124

Show
Ignore:
Timestamp:
01/17/07 01:10:49 (2 years ago)
Author:
arjanmol
Message:

First attempt to get setuptools (EasyInstall?) working. See esetup.py.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • gaphor/trunk/utils/build_mo.py

    r1121 r1124  
    55""" 
    66 
    7 from distutils.core import Command 
     7try: 
     8    from setuptools import Command 
     9except ImportError: 
     10    from distutils.core import Command 
    811from distutils.dep_util import newer 
    912from distutils.command.build import build as _build 
  • gaphor/trunk/utils/build_pot.py

    r1121 r1124  
    66""" 
    77 
    8 from distutils.core import Command 
     8try: 
     9    from setuptools import Command 
     10except ImportError: 
     11    from distutils.core import Command 
    912from commands import getstatus 
    1013import sys, os.path 
  • gaphor/trunk/utils/install_mo.py

    r1121 r1124  
    1010""" 
    1111 
    12 from distutils.core import Command 
     12try: 
     13    from setuptools import Command 
     14except ImportError: 
     15    from distutils.core import Command 
    1316from distutils.command.install import install as _install 
    1417from distutils.util import change_root