feat: migrate to uv-managed project (#10)

* Initial plan

* feat: migrate to uv-managed project

Co-authored-by: ivuorinen <11024+ivuorinen@users.noreply.github.com>

* fix: align Python version in pyproject.toml and CI setup-uv config

Co-authored-by: ivuorinen <11024+ivuorinen@users.noreply.github.com>

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: ivuorinen <11024+ivuorinen@users.noreply.github.com>
This commit is contained in:
Copilot
2026-03-13 08:42:08 +02:00
committed by GitHub
parent 2e22efac17
commit 265f8de06b
9 changed files with 463 additions and 47 deletions

View File

@@ -1,19 +1,19 @@
.PHONY: install format lint test check clean
install:
@pip install -r requirements.txt
@uv sync --all-groups
format:
@ruff format .
@uv run ruff format .
lint:
@ruff check .
@uv run ruff check .
test:
@pytest --cov=aeonview --cov-report=term-missing
@uv run pytest --cov=aeonview --cov-report=term-missing
check: lint test
clean:
@find . -type d -name '__pycache__' -exec rm -r {} +
@rm -rf .pytest_cache .coverage htmlcov
@rm -rf .pytest_cache .coverage htmlcov .venv