2 |
|
+++ setup.py 2006-02-27 23:05:28.000000000 +0100 |
3 |
|
@@ -1,9 +1,7 @@ |
4 |
|
# ez_setup doesn't work with Python 2.2, so we use distutils |
5 |
< |
# in that case: |
6 |
< |
try: |
7 |
< |
- from ez_setup import use_setuptools |
8 |
< |
- use_setuptools() |
9 |
< |
- from setuptools import setup |
10 |
< |
+ from distutils.core import setup, Extension, Command |
11 |
< |
except ImportError: |
12 |
< |
from distutils.core import setup |
5 |
> |
# in that case: |
6 |
> |
try: |
7 |
> |
- from ez_setup import use_setuptools |
8 |
> |
- use_setuptools() |
9 |
> |
- from setuptools import setup |
10 |
> |
+ from distutils.core import setup, Extension, Command |
11 |
> |
except ImportError: |
12 |
> |
from distutils.core import setup |