refactor: drop decnet- prefix — BEHAVE is now standalone

Rename packages and imports:
  decnet-behave-core  → behave-core
  decnet-behave-shell → behave-shell
  decnet-behave-text  → behave-text
  decnet_behave_*     → behave_*

BEHAVE is no longer a DECNET sub-project.
This commit is contained in:
2026-05-10 06:20:01 -04:00
parent bccd1eafd9
commit 22b57307cf
23 changed files with 34 additions and 34 deletions

View File

@@ -3,13 +3,13 @@ requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "decnet-behave-shell"
name = "behave-shell"
version = "0.1.0"
description = "BEHAVE-SHELL — shell-session behavioral observation registry, layered on decnet-behave-core"
description = "BEHAVE-SHELL — shell-session behavioral observation registry, layered on behave-core"
requires-python = ">=3.11"
license = { text = "GPL-3.0-or-later" }
authors = [{ name = "ANTI" }]
dependencies = ["pydantic>=2.6", "decnet-behave-core>=0.1.0"]
dependencies = ["pydantic>=2.6", "behave-core>=0.1.0"]
[project.optional-dependencies]
dev = ["pytest>=8", "pytest-cov", "ruff"]
@@ -18,7 +18,7 @@ dev = ["pytest>=8", "pytest-cov", "ruff"]
"Source" = "https://git.resacachile.cl/anti/BEHAVE"
[tool.setuptools.packages.find]
include = ["decnet_behave_shell*"]
include = ["behave_shell*"]
[tool.ruff]
line-length = 100