From cdc80c3620fe1fc17d4c7728c050f66d75354d08 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Erik=20Bj=C3=A4reholt?= Date: Thu, 19 Sep 2024 16:13:11 +0200 Subject: [PATCH] added `moshi-*` scripts/entrypoints to pyproject.toml --- moshi/pyproject.toml | 4 ++++ moshi_mlx/pyproject.toml | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/moshi/pyproject.toml b/moshi/pyproject.toml index 32b74b3..da5baa6 100644 --- a/moshi/pyproject.toml +++ b/moshi/pyproject.toml @@ -32,3 +32,7 @@ dev = [ "flake8", "pre-commit", ] + +[project.scripts] +moshi-server = "moshi.server:main" +moshi-client = "moshi.client:main" diff --git a/moshi_mlx/pyproject.toml b/moshi_mlx/pyproject.toml index ccf12f3..885c81a 100644 --- a/moshi_mlx/pyproject.toml +++ b/moshi_mlx/pyproject.toml @@ -33,3 +33,7 @@ dev = [ "flake8", "pre-commit", ] + +[project.scripts] +moshi-server-mlx = "moshi_mlx.local_web:main" +moshi-local = "moshi_mlx.local:main"