forked from seanlook/SchemaSync
-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
44 lines (38 loc) · 1.35 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
40
41
42
43
44
#--coding:utf8--!--
#!/usr/bin/env python
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup
setup(
name='schema-sync',
version='0.9.5',
description='A MySQL Schema Synchronization Utility',
author='Mitch Matuson, Mustafa Ozgur',
url='https://github.com/hhyo/SchemaSync',
packages=['schemasync'],
install_requires=['schema-object >= 0.5.8'],
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).
"""
)