1 |
< |
--- setup.py 2005-10-02 00:59:54.000000000 +0200 |
2 |
< |
+++ setup.py 2006-02-27 23:05:28.000000000 +0100 |
3 |
< |
@@ -1,9 +1,7 @@ |
1 |
> |
--- setup.py 2007-02-13 12:29:27.000000000 +0100 |
2 |
> |
+++ setup.py.new 2007-03-05 14:26:53.000000000 +0100 |
3 |
> |
@@ -1,13 +1,7 @@ |
4 |
|
# ez_setup doesn't work with Python 2.2, so we use distutils |
5 |
|
# in that case: |
6 |
< |
try: |
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 |
10 |
> |
- is_setuptools = True |
11 |
> |
-except ImportError: |
12 |
> |
- from distutils.core import setup |
13 |
> |
- is_setuptools = False |
14 |
> |
+from distutils.core import setup |
15 |
> |
+is_setuptools = False |
16 |
> |
|
17 |
> |
subpackages = ['firebird', 'include', 'include.pydispatch', 'inheritance', |
18 |
> |
'manager', 'maxdb', 'mysql', 'mssql', 'postgres', 'sqlite', |