#!/usr/bin/env python3.1
from distutils.core import setup, Extension
mysqlmodule = Extension(
name = 'mysql._mysql',
sources = ['_mysql.c'],
libraries = ['mysqlclient'],
language = 'c',
)
setup(
name = 'MySQL',
version = '0.5.5',
description = 'Python 3 module for MySQL database access',
long_description = 'This is a PEP 249 compliant Python 3 module that allows Python 3 programs to access MySQL database server',
author = 'Bozhin Zafirov',
author_email = 'bozhin@abv.bg',
packages = ['mysql'],
ext_modules = [mysqlmodule],
license = 'GPL 3',
)