-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
33 lines (26 loc) · 704 Bytes
/
Makefile
File metadata and controls
33 lines (26 loc) · 704 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Makefile for CausalBoundingEngine
.PHONY: help docs test lint install clean
help:
@echo "Available commands:"
@echo " install Install package in development mode"
@echo " test Run tests"
@echo " lint Run code quality checks"
@echo " docs Build documentation"
@echo " clean Clean build artifacts"
install:
pip install -e .[full,docs]
test:
pytest tests/ -v
lint:
black causalboundingengine/ tests/
isort causalboundingengine/ tests/
mypy causalboundingengine/
docs:
cd docs && make html
clean:
rm -rf build/
rm -rf dist/
rm -rf *.egg-info/
rm -rf docs/build/
find . -type d -name __pycache__ -exec rm -rf {} +
find . -type f -name "*.pyc" -delete