1 Star 0 Fork 48

老吴/DB-GPT

forked from Gitee 极速下载/DB-GPT 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 1.17 KB
一键复制 编辑 原始数据 按行查看 历史
chenketing1992 提交于 2023-07-06 18:08 . doc:version update
from typing import List
import setuptools
from setuptools import find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
def parse_requirements(file_name: str) -> List[str]:
with open(file_name) as f:
return [
require.strip()
for require in f
if require.strip() and not require.startswith("#")
]
setuptools.setup(
name="DB-GPT",
packages=find_packages(),
version="0.3.0",
author="csunny",
author_email="cfqcsunny@gmail.com",
description="DB-GPT is an experimental open-source project that uses localized GPT large models to interact with your data and environment."
" With this solution, you can be assured that there is no risk of data leakage, and your data is 100% private and secure.",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=parse_requirements("requirements.txt"),
url="https://github.com/csunny/DB-GPT",
license="https://opensource.org/license/mit/",
python_requires=">=3.10",
entry_points={
"console_scripts": [
"dbgpt_server=pilot.server:webserver",
],
},
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/wwzchgong88/DB-GPT.git
git@gitee.com:wwzchgong88/DB-GPT.git
wwzchgong88
DB-GPT
DB-GPT
main

搜索帮助

A270a887 8829481 3d7a4017 8829481