1 Star 0 Fork 15

实践中的考拉/python-dbhelper

forked from fangzheng/python-dbhelper 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 1014 Bytes
一键复制 编辑 原始数据 按行查看 历史
zfang 提交于 2019-04-19 09:45 . fix: add setup.py 安装文件
#!/usr/bin/python
# -*- coding: utf-8 -*-
"""
-------------------------------------------------
@version : v1.0
@author : fangzheng
@contact : zfang@hillinsight.com
@software : PyCharm
@filename : setup.py
@create time: 2019/4/18 19:51
@describe :
@use example: python setup.py [param1 param2]
-------------------------------------------------
"""
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name="dbhelper",
version="1.0",
keywords=("dbhelper"),
description="python db helper",
long_description="python db helper",
license="MIT Licence",
url="https://gitee.com/fangzheng0518/python-dbhelper",
author="dbhelper",
author_email="founder517518@163.com",
packages=find_packages(),
include_package_data=True,
platforms="any",
install_requires=[],
scripts=[],
entry_points={
'console_scripts': [
'test = test.help:main'
]
}
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/frekoala/python-dbhelper.git
git@gitee.com:frekoala/python-dbhelper.git
frekoala
python-dbhelper
python-dbhelper
master

搜索帮助