forked from codekansas/usa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
79 lines (59 loc) · 1.57 KB
/
Makefile
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# Makefile
define HELP_MESSAGE
ML Template
-----------
# Installing
1. Create a new Conda environment: `conda create --name usa-net python=3.10`
2. Activate the environment: `conda activate usa-net`
3. Install the package: `make install-dev`
4. Rebuild C++ extensions: `make build-ext`
# Running Tests
1. Run autoformatting: `make format`
2. Run static checks: `make static-checks`
3. Run unit tests: `make test`
endef
export HELP_MESSAGE
all:
@echo "$$HELP_MESSAGE"
.PHONY: all
# ------------------------ #
# Build #
# ------------------------ #
install-torch-nightly:
@pip install --pre torch --index-url https://download.pytorch.org/whl/nightly
.PHONY: install-torch-nightly
install:
@pip install --verbose -e .
.PHONY: install
install-dev:
@pip install --verbose -e '.[dev]'
.PHONY: install
build-ext:
@python setup.py build_ext --inplace
.PHONY: build-ext
clean:
rm -rf build dist *.so **/*.so **/*.pyi **/*.pyc **/*.pyd **/*.pyo **/__pycache__ *.egg-info .eggs/ .ruff_cache/
.PHONY: clean
# ------------------------ #
# Static Checks #
# ------------------------ #
py-files := $$(git ls-files '*.py')
format:
black $(py-files)
ruff --fix $(py-files)
.PHONY: format
static-checks:
black --diff --check $(py-files)
ruff $(py-files)
mypy --install-types --non-interactive $(py-files)
darglint $(py-files)
.PHONY: lint
mypy-daemon:
dmypy run -- $(py-files)
.PHONY: mypy-daemon
# ------------------------ #
# Unit tests #
# ------------------------ #
test:
python -m pytest
.PHONY: test