1 Star 0 Fork 12

wholve / byzer-llm

forked from 祝威廉 / byzer-llm 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 1.34 KB
一键复制 编辑 原始数据 按行查看 历史
WilliamZhu 提交于 2024-03-18 20:01 . update
import os
from setuptools import find_packages
from setuptools import setup
folder = os.path.dirname(__file__)
version_path = os.path.join(folder, "src", "byzerllm", "version.py")
__version__ = None
with open(version_path) as f:
exec(f.read(), globals())
req_path = os.path.join(folder, "requirements.txt")
install_requires = []
# if os.path.exists(req_path):
# with open(req_path) as fp:
# install_requires = [line.strip() for line in fp]
readme_path = os.path.join(folder, "README.md")
readme_contents = ""
if os.path.exists(readme_path):
with open(readme_path) as fp:
readme_contents = fp.read().strip()
setup(
name="byzerllm",
version=__version__,
description="ByzerLLM: Byzer LLM",
author="allwefantasy",
long_description=readme_contents,
long_description_content_type="text/markdown",
entry_points={
'console_scripts': [
'byzerllm = byzerllm.byzerllm:main',
],
},
package_dir={"": "src"},
packages=find_packages("src"),
package_data={
"byzerllm":['bark/assets/**/*']
},
install_requires=install_requires,
classifiers=[
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
requires_python=">=3.9",
)
1
https://gitee.com/wholve/byzer-llm.git
git@gitee.com:wholve/byzer-llm.git
wholve
byzer-llm
byzer-llm
master

搜索帮助