Initial commit

This commit is contained in:
Dan Guido
2026-01-29 21:50:14 -05:00
commit bc36073036
38 changed files with 12434 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
.PHONY: dev lint format test audit
dev:
uv sync --all-groups
lint:
uv run ruff format --check . && uv run ruff check . && uv run ty check dropkit/
format:
uv run ruff format .
test:
uv run pytest
audit:
uv run pip-audit