view setup.py @ 66:5a7c30cd9de2 MySQLdb

By exposing connection on result, decoders can be simplified: Only the field object is needed. Turned on leak testing and found a leak writing BLOBs. removed one of the old stubs in Cursor.
author adustman
date Sun, 29 Mar 2009 16:26:30 +0000
parents 8506ded95181
children
line wrap: on
line source

#!/usr/bin/env python

import os
import sys
from setuptools import setup, Extension

if not hasattr(sys, "hexversion") or sys.hexversion < 0x02040000:
    raise Error("Python 2.4 or newer is required")

if os.name == "posix":
    from setup_posix import get_config
else: # assume windows
    from setup_windows import get_config

metadata, options = get_config()
metadata['ext_modules'] = [
    Extension(sources=['src/mysqlmod.c',
                       'src/connections.c',
                       'src/results.c',
                       'src/fields.c',
                       ],
              **options),
    ]
metadata['long_description'] = metadata['long_description'].replace(r'\n', '')
setup(**metadata)