1 Star 0 Fork 0

北京谷梁科技有限公司/llama-models

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
setup.py 1.13 KB
一键复制 编辑 原始数据 按行查看 历史
Ashwin Bharambe 提交于 2024-07-23 11:21 . Update setup.py
# Copyright (c) Meta Platforms, Inc. and affiliates.
# All rights reserved.
#
# This source code is licensed under the terms described in the LICENSE file in
# top-level folder for each specific model found within the models/ directory at
# the top-level of this source tree.
# Copyright (c) Meta Platforms, Inc. and affiliates.
# All rights reserved.
#
# This source code is licensed under the terms described in the LICENSE file in
# the root directory of this source tree.
from setuptools import setup
def read_requirements():
with open("requirements.txt") as fp:
content = fp.readlines()
return [line.strip() for line in content if not line.startswith("#")]
setup(
name="llama_models",
version="0.0.1",
author="Meta Llama",
author_email="llama-oss@meta.com",
description="Llama models",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/meta-llama/llama-models",
package_dir={"llama_models": "models"},
classifiers=[],
python_requires=">=3.10",
install_requires=read_requirements(),
include_package_data=True,
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/guliangtech/llama-models.git
git@gitee.com:guliangtech/llama-models.git
guliangtech
llama-models
llama-models
405_patch

搜索帮助