forked from knadh/simplemysql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (25 loc) · 863 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/usr/bin/env python
from setuptools import setup
setup(
name="simplemysql",
version="1.25",
description="An ultra simple wrapper for Python MySQLdb with very basic functionality",
author="Kailash Nadh",
author_email="kailash.nadh@gmail.com",
url="http://nadh.in/code/simplemysql",
packages=['simplemysql'],
download_url="http://github.com/knadh/simplemysql",
license="GPLv2",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Natural Language :: English",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Programming Language :: Python :: 3.5",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Database",
"Topic :: Software Development :: Libraries"
],
install_requires=["mysqlclient"]
)