From 0c42b0f06e0df163a3369f738a37134f4498003b Mon Sep 17 00:00:00 2001 From: Man Parvesh Singh Randhawa Date: Sun, 13 Oct 2024 00:40:19 -0700 Subject: [PATCH] move yoda.py from cli to yodapa --- pyproject.toml | 4 ++-- src/cli/__init__.py | 0 src/{cli => yodapa}/yoda.py | 0 3 files changed, 2 insertions(+), 2 deletions(-) delete mode 100644 src/cli/__init__.py rename src/{cli => yodapa}/yoda.py (100%) diff --git a/pyproject.toml b/pyproject.toml index 28e192fa..6615170f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ packages = [ { include = "yodapa", from = "src" } ] repository = "https://github.com/yoda-pa/yoda/tree/v2" -homepage = "https://yoda-pa.github.io/" +homepage = "https://yoda-pa.github.io/yoda" [tool.poetry.dependencies] python = "^3.9" @@ -37,4 +37,4 @@ requires = ["poetry-core"] build-backend = "poetry.core.masonry.api" [tool.poetry.scripts] -yoda = "cli.yoda:app" +yoda = "yodapa.yoda:app" diff --git a/src/cli/__init__.py b/src/cli/__init__.py deleted file mode 100644 index e69de29b..00000000 diff --git a/src/cli/yoda.py b/src/yodapa/yoda.py similarity index 100% rename from src/cli/yoda.py rename to src/yodapa/yoda.py