-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (27 loc) · 797 Bytes
/
setup.py
File metadata and controls
31 lines (27 loc) · 797 Bytes
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
#-*- encoding: UTF-8 -*-
from setuptools import setup, find_packages
import sys, os
from os import path
"""
See https://github.com/icecooly/MysqlDiff
"""
VERSION = '1.10'
DESCRIPTION = (
'自动检测新旧库表的差异以及字段差异,方便升级项目时更新旧表,支持Ssh隧道'
)
setup(
name='MysqlDiff',
version=VERSION,
description="mysql表结构比较工具",
long_description=DESCRIPTION,
classifiers=[],
keywords='mysql diff',
include_package_data = True,
author='skydu',
author_email='icecooly.du@qq.com',
url='https://github.com/icecooly/MysqlDiff',
license='MIT',
packages=find_packages(),
install_requires=['pymysql','sshtunnel'],
extras_require={}
)