1 Star 1 Fork 0

icecooly / Mysql2docx

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
setup.py 762 Bytes
一键复制 编辑 原始数据 按行查看 历史
icecooly 提交于 2019-07-20 16:44 . add
#-*- encoding: UTF-8 -*-
from setuptools import setup, find_packages
import sys, os
from os import path
"""
See https://github.com/icecooly/Mysql2docx
"""
VERSION = '1.6'
DESCRIPTION = (
'自动生成数据库设计文档'
)
setup(
name='Mysql2docx',
version=VERSION,
description="mysql自动生成数据库设计文档",
long_description=DESCRIPTION,
classifiers=[],
keywords='自动数据库设计文档',
include_package_data = True,
author='skydu',
author_email='icecooly.du@qq.com',
url='https://github.com/icecooly/Mysql2docx',
license='MIT',
packages=find_packages(),
install_requires=['python-docx','pymysql'],
extras_require={}
)
1
https://gitee.com/icecooly/Mysql2docx.git
git@gitee.com:icecooly/Mysql2docx.git
icecooly
Mysql2docx
Mysql2docx
master

搜索帮助