-
Notifications
You must be signed in to change notification settings - Fork 9
/
Makefile
63 lines (50 loc) · 1.47 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
.PHONY: help init clean-pyc clean-build clean-docs clean lint test coverage docs docs-local release check-build
help:
@echo "init - initialize a clean clone"
@echo "clean-build - remove build artifacts"
@echo "clean-pyc - remove Python file artifacts"
@echo "clean-docs - remove doc build artifacts"
@echo "clean - remove all artifacts"
@echo "lint - check style with ruff"
@echo "test - run tests quickly with the default Python"
@echo "coverage - check code coverage quickly with the default Python"
@echo "docs - generate Sphinx HTML documentation, including API docs"
@echo "docs-local - generate docs and open locally"
@echo "release - package and upload a release"
@echo "check-build - check distribution packaging"
init:
pip install --editable .[dev]
pre-commit install
mkdir changelog.d
clean: clean-build clean-docs clean-pyc
clean-build:
rm -fr build/
rm -fr dist/
rm -fr src/*.egg-info
clean-pyc:
find . -name '*.pyc' -exec rm -f {} +
find . -name '*.pyo' -exec rm -f {} +
find . -name '*~' -exec rm -f {} +
clean-docs:
rm -fr docs/api
$(MAKE) -C docs clean
lint:
tox -e lint
test:
pytest -v --doctest-glob=docs/usage.rst
coverage:
coverage run -m pytest
coverage report -m
coverage html
open htmlcov/index.html
docs: clean-docs
sphinx-apidoc -fMeT -o docs/api src/pylunar
$(MAKE) -C docs html
docs-local: docs
open docs/_build/html/index.html
release: clean
python -m build
twine upload dist/*
check-build: clean
python -m build
twine check dist/*