From 8cac82d95941a07c9d71f8ef38d951fed227e04e Mon Sep 17 00:00:00 2001 From: aitbc1 Date: Sat, 28 Mar 2026 10:58:06 +0100 Subject: [PATCH] Update to v0.2.2 - fix pyproject.toml and package build --- pyproject.toml | 18 +++++------------- 1 file changed, 5 insertions(+), 13 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index c24b5cb1..e35139b0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -103,7 +103,7 @@ import_mode = "append" [project] name = "aitbc-cli" -version = "0.2.0" +version = "0.2.2" description = "AITBC Command Line Interface Tools" authors = [ {name = "AITBC Team", email = "team@aitbc.net"} @@ -149,6 +149,7 @@ classifiers = [ ] [project.optional-dependencies] +[dependency-groups] dev = [ "pytest==9.0.2", "pytest-asyncio>=1.3.0,<2.0.0", @@ -166,7 +167,7 @@ dev = [ ] [project.scripts] -aitbc = "aitbc_cli.main:cli" +aitbc = "core.main:main" [project.urls] Homepage = "https://aitbc.net" @@ -178,14 +179,5 @@ requires = ["setuptools>=61.0", "wheel"] build-backend = "setuptools.build_meta" [tool.setuptools.packages.find] -where = ["cli", "apps/coordinator-api"] -include = ["aitbc_cli*", "aitbc*"] - -[tool.setuptools.package-dir] -"aitbc_cli" = "cli/aitbc_cli" -"aitbc" = "apps/coordinator-api/aitbc" - -[dependency-groups] -dev = [ - "mypy (>=1.19.1,<2.0.0)" -] +where = ["cli"] +include = ["core*", "commands*", "auth*", "utils*", "models*", "config*", "completion*"]