forked from mmatuson/SchemaObject
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 1.02 KB
/
setup.py
File metadata and controls
27 lines (26 loc) · 1.02 KB
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='SchemaObject',
packages=['schemaobject'],
version='0.6.0',
description="Iterate over a MySQL database schema as a Python object.",
author="Mitch Matuson",
author_email="code@matuson.com",
url="http://matuson.com/code/schemaobject",
keywords=["MySQL", "database", "schema"],
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Database",
"Topic :: Database :: Front-Ends",
],
long_description="""\
SchemaObject provides a simple, easy to use Python object interface to a MySQL database schema. You can effortlessly write tools to test, validate, sync, migrate, or manage your schema as well as generate the SQL necessary to make changes to it.
""",
install_requires=[
"PyMySQL >= 0.6.2",
],
)