Reorganize project structure: move modules to neopig/, scripts to scripts/, data to data/

This commit is contained in:
Russell Ballestrini 2026-01-06 14:06:43 -05:00
parent ee7a193d0f
commit 58c93f217a
28 changed files with 37 additions and 37 deletions

View file

@ -12,7 +12,7 @@ install: venv
$(PIP) install -r requirements.txt
test: install
$(PYTHON) test_crawl.py
$(PYTHON) -m pytest tests/ -v --tb=short
crawl: install
$(PYTHON) neopig.py $(ARGS)
@ -21,8 +21,8 @@ archive: install
$(PYTHON) archive.py $(ARGS)
# Build bootstrap binary for self-extracting archives
bootstrap: bootstrap.c
gcc -O2 -Wall -o bootstrap bootstrap.c -lz
bootstrap: scripts/bootstrap.c
gcc -O2 -Wall -o bootstrap scripts/bootstrap.c -lz
@echo "Built: bootstrap ($$(stat -c%s bootstrap 2>/dev/null || stat -f%z bootstrap) bytes)"
# Create self-extracting .run from a tarball