remove infra.md.example, infra.md is the source of truth

This commit is contained in:
Azreen Jamal
2026-03-03 03:06:13 +08:00
parent 1ad3033cc1
commit a3c6d09350
86 changed files with 17093 additions and 39 deletions

25
ayn-antivirus/Makefile Normal file
View File

@@ -0,0 +1,25 @@
.PHONY: install dev-install test lint scan update-sigs clean
install:
pip install .
dev-install:
pip install -e ".[dev]"
test:
pytest --cov=ayn_antivirus tests/
lint:
ruff check ayn_antivirus/
black --check ayn_antivirus/
scan:
ayn-antivirus scan
update-sigs:
ayn-antivirus update
clean:
rm -rf build/ dist/ *.egg-info .pytest_cache .coverage
find . -type d -name __pycache__ -exec rm -rf {} +
find . -type f -name '*.pyc' -delete