mirror of
https://github.com/CatalaLang/catala.git
synced 2024-11-14 13:58:40 +03:00
16 lines
238 B
Makefile
16 lines
238 B
Makefile
SOURCES=catala_runtime.py allocations_familiales.py
|
|
|
|
dependencies:
|
|
pip install -r dependencies.txt
|
|
|
|
type:
|
|
mypy $(SOURCES)
|
|
|
|
format:
|
|
autopep8 --in-place $(SOURCES)
|
|
|
|
doc:
|
|
mkdir -p doc
|
|
sphinx-build ./ doc
|
|
ln -sf doc/index.html doc.html
|