Menu

[r18]: / setup.py  Maximize  Restore  History

Download this file

23 lines (19 with data), 578 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/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',
)
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.