mirror of
https://github.com/exo-explore/exo.git
synced 2025-12-23 22:27:50 -05:00
Co-authored-by: Gelu Vrabie <gelu@exolabs.net> Co-authored-by: Seth Howes <sethshowes@gmail.com> Co-authored-by: Matt Beton <matthew.beton@gmail.com>
34 lines
617 B
TOML
34 lines
617 B
TOML
[project]
|
|
name = "exo-worker"
|
|
version = "0.1.0"
|
|
description = "Worker for the Exo project"
|
|
readme = "README.md"
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"exo-shared",
|
|
"huggingface_hub>=0.33.4",
|
|
"mlx==0.26.3",
|
|
"mlx-lm>=0.25.3",
|
|
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.metadata]
|
|
allow-direct-references = true
|
|
|
|
[tool.hatch.build]
|
|
clean = true
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = []
|
|
include = ["*"]
|
|
exclude = ["*.md", "pyproject.toml"]
|
|
|
|
[tool.hatch.build.targets.sdist]
|
|
packages = []
|
|
include = ["*"]
|
|
exclude = ["*.md", "pyproject.toml"]
|