mirror of
https://framagit.org/framasoft/framaspace/argos.git
synced 2025-04-28 18:02:41 +02:00
10 lines
190 B
Makefile
10 lines
190 B
Makefile
venv:
|
|
python3 -m venv venv
|
|
install: venv
|
|
venv/bin/pip install -e ".[dev,docs]"
|
|
docs: cog
|
|
venv/bin/sphinx-build docs public
|
|
cog:
|
|
venv/bin/cog -r docs/*.md
|
|
tests: install
|
|
venv/bin/pytest
|