1 Star 0 Fork 0

郭立本/exo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 1.26 KB
一键复制 编辑 原始数据 按行查看 历史
Alex Cheema 提交于 2024-08-15 22:23 . update mlx to 0.16.3
import sys
from setuptools import find_packages, setup
# Base requirements for all platforms
install_requires = [
"aiohttp==3.10.2",
"aiohttp_cors==0.7.0",
"aiofiles==24.1.0",
"blobfile==2.1.1",
"grpcio==1.64.1",
"grpcio-tools==1.64.1",
"hf-transfer==0.1.8",
"huggingface-hub==0.24.5",
"Jinja2==3.1.4",
"netifaces==0.11.0",
"numpy==2.0.0",
"pillow==10.4.0",
"prometheus-client==0.20.0",
"protobuf==5.27.1",
"psutil==6.0.0",
"pynvml==11.5.3",
"requests==2.32.3",
"rich==13.7.1",
"safetensors==0.4.3",
"tenacity==9.0.0",
"tiktoken==0.7.0",
"tokenizers==0.19.1",
"tqdm==4.66.4",
"transformers==4.43.3",
"uuid==1.30",
"tinygrad @ git+https://github.com/tinygrad/tinygrad.git@639af3f823cf242a1945dc24183e52a9df0af2b7",
]
# Add macOS-specific packages if on Darwin (macOS)
if sys.platform.startswith("darwin"):
install_requires.extend(
[
"mlx==0.16.3",
"mlx-lm==0.16.1",
]
)
extras_require = {
"linting": [
"pylint==3.2.6",
"ruff==0.5.5",
"mypy==1.11.0",
],
}
setup(
name="exo",
version="0.0.1",
packages=find_packages(),
install_requires=install_requires,
extras_require=extras_require,
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/guoliben/exo.git
git@gitee.com:guoliben/exo.git
guoliben
exo
exo
astra

搜索帮助