forked from eloraburns/mysql-ctypes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 715 Bytes
/
Copy pathsetup.py
File metadata and controls
22 lines (20 loc) · 715 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
setup(
name="mysql-ctypes",
version = "0.5",
author = "Alex Gaynor and Quora",
author_email = "alex.gaynor@gmail.com",
description=("A MySQL wrapper that uses ctypes, aims to be a drop-in "
"replacement for MySQLdb"),
packages=["MySQLdb", "MySQLdb.constants"],
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Topic :: Database",
],
)