forked from mmatuson/SchemaSync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (34 loc) · 1.24 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
#!/usr/bin/env python
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup
setup(
name='SchemaSync',
version='0.9.2',
description='A MySQL Schema Synchronization Utility',
author='Mitch Matuson',
packages=['schemasync'],
install_requires=['SchemaObject >=0.5.3'],
entry_points={
'console_scripts': [
'schemasync = schemasync.schemasync:main',
]
},
keywords = ["MySQL", "database", "schema", "migration", "SQL"],
classifiers = [
"Environment :: Console",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Topic :: Database",
"Topic :: Database :: Front-Ends",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Code Generators",
"Topic :: Utilities",
],
long_description = """\
Schema Sync will generate the SQL necessary to migrate the schema of a source database to a target database (patch script), as well as a the SQL necessary to undo the changes after you apply them (revert script).
"""
)