-
Notifications
You must be signed in to change notification settings - Fork 20
/
Makefile
48 lines (36 loc) · 883 Bytes
/
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
PYTHON := python3
PYTEST := pytest
PIP := $(PYTHON) -m pip
MYPY := $(PYTHON) -m mypy
PYTEST_ARGS := -W ignore::DeprecationWarning -vv --log-level=DEBUG
VERSION := 0.4
all: docs test
clean:
rm -rf build/* dist/*
develop:
$(PYTHON) setup.py develop
dist:
$(PYTHON) setup.py sdist bdist_wheel
dist-upload:
$(PYTHON) -m twine upload dist/*
docs:
rm -rf ../docs/$(VERSION)
cd docs; make dirhtml
rsync -avP --delete-after docs/_build/dirhtml/ ../docs/$(VERSION)/
install-deps:
$(PIP) install --upgrade pip
$(PIP) install --upgrade -r requirements.txt
install:
$(PYTHON) setup.py install
uninstall:
$(PIP) uninstall miplearn
reformat:
$(PYTHON) -m black .
test:
# pyflakes miplearn tests
black --check .
# rm -rf .mypy_cache
$(MYPY) -p miplearn
$(MYPY) -p tests
$(PYTEST) $(PYTEST_ARGS)
.PHONY: test test-watch docs install dist