aboutsummaryrefslogtreecommitdiffstats
path: root/src/avp/command.py (follow)
Commit message (Collapse)AuthorAgeFilesLines
* rename 'test report' to 'log file' in comments/errorstassaron2026-01-151-3/+3
|
* fix file logging for main program logtassaron2026-01-141-2/+1
|
* rename `--test` and `--debug` args && add `--version` argtassaron2026-01-141-25/+17
|
* Use pyproject.toml + uv_buildAeliton G. Silva2026-01-131-0/+316
This replaces setup.py by a modern pyproject.toml using uv_build backend. Dependencies are being also managed by uv, so to install dependencies and run the project one can execute: ``` uv sync uv run pytest # optional python -m avp ``` To build the both source and binary (wheel) distribution package run: ``` uv build ``` Uv can be installed with `pip install uv`. The directory structure has been changed to reflect best practices. - src/* -> src/avp/ - src/tests -> ../tests