-
Notifications
You must be signed in to change notification settings - Fork 12
/
Makefile
42 lines (35 loc) · 1.03 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
.PHONY: install
install:
python3 -m pip install --upgrade pip
python3 -m pip install --upgrade wheel
python3 -m pip install --upgrade --upgrade-strategy eager -r requirements-dev.txt $(PIP_INSTALL_ARGS)
virtualenv --upgrade-embed-wheels
.PHONY: .install_doc
.install_doc:
python3 -m pip install --upgrade --upgrade-strategy eager -r docs/requirements.txt
# run linters
.PHONY: lint
lint:
pre-commit run -a
if type pytype >/dev/null 2>&1; then pytype cardano_clusterlib; fi
# build package
.PHONY: build
build:
if ! python3 -c "import build" >/dev/null 2>&1; then python3 -m pip install --upgrade build; fi
python3 -m build
# upload package to PyPI
.PHONY: upload
upload:
if ! type twine >/dev/null 2>&1; then python3 -m pip install --upgrade twine; fi
twine upload --skip-existing dist/*
# release package to PyPI
.PHONY: release
release: build upload
.PHONY: .docs_build_dir
.docs_build_dir:
mkdir -p docs/build
# generate sphinx documentation
.PHONY: doc
doc: .docs_build_dir .install_doc
$(MAKE) -C docs clean
$(MAKE) -C docs html