1 Star 0 Fork 0

阿债 / rdmysql

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 942 Bytes
一键复制 编辑 原始数据 按行查看 历史
阿债 提交于 2018-02-13 20:12 . 增加查询信息的辅助函数
import sys
from os.path import join, dirname
from setuptools import setup, find_packages
sys.path.insert(0, join(dirname(__file__), 'src'))
from rdmysql import __version__
setup(
name="rdmysql",
version=__version__,
description="a simple db layer based on ultra-mysql",
author="Ryan Liu",
author_email="azhai@126.com",
url="https://github.com/azhai/rdmysql",
license="MIT",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Topic :: Database :: Front-Ends",
"License :: OSI Approved :: MIT License",
],
keywords=["mysql", "database", "model"],
packages=find_packages('src'),
package_dir={'': 'src'},
install_requires=[
"umysql>=2.61",
],
dependency_links=[
"git+ssh://git@github.com/azhai/ultramysql.git@2.62.dev0#egg=mayo-2.62.dev0",
]
)
1
https://gitee.com/azhai/rdmysql.git
git@gitee.com:azhai/rdmysql.git
azhai
rdmysql
rdmysql
master

搜索帮助