ArxPM¶
arxpm is the project and package manager for Arx workspaces.
Scope¶
arxis compiler-only.arxpmresolves project layout, validates package roots, and chooses default build targets.- Python environments are backend-neutral: a project can use a project-local
venv (default), a conda environment, or the current system interpreter.
uvis used to install packages in all cases.
Architecture¶
src/arxpm/models.py: typed manifest models.src/arxpm/manifest.py: parse/render.arxproject.toml.src/arxpm/layout.py: resolve effectivesrc_dir,package, andmode.src/arxpm/environment.py: environment runtime abstraction and thevenv,conda, andsystemimplementations.src/arxpm/credentials.py: keyring-backed publish credential storage.src/arxpm/project.py:init,add,install,build,run,pack,publish.src/arxpm/healthcheck.py: manifest, layout, environment, and compiler checks.src/arxpm/cli.py: Typer CLI layer.
Quick CLI¶
arxpm init --name hello-arx
arxpm add http
arxpm install
arxpm build
arxpm run
arxpm healthcheck