Update to v0.2.2 - fix pyproject.toml and package build
All checks were successful
security-scanning / audit (push) Successful in 14s

This commit is contained in:
aitbc1
2026-03-28 10:58:06 +01:00
parent e9f4193f7a
commit 8cac82d959

View File

@@ -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*"]