forked from nasa/harmony-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
53 lines (38 loc) · 1.38 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
.PHONY: install install-examples clean examples lint test test-watch ci docs
VERSION ?= $(shell git describe --tags | sed 's/-/\+/' | sed 's/-/\./g')
REPO ?= https://upload.pypi.org/legacy/
REPO_USER ?= __token__
REPO_PASS ?= unset
clean:
coverage erase
rm -rf htmlcov
rm -rf build dist *.egg-info || true
clean-docs:
cd docs && $(MAKE) clean
install:
python -m pip install --upgrade pip
pip install -r requirements/core.txt -r requirements/dev.txt -r requirements/docs.txt
install-examples: install
pip install -r requirements/examples.txt
examples: install-examples
jupyter-lab
lint:
flake8 harmony --show-source --statistics
test:
pytest --cov=harmony --cov-report=term --cov-report=html --cov-branch tests
test-watch:
ptw -c -w
ci: lint test
docs-notebook = examples/tutorial.ipynb
docs/user/notebook.html: $(docs-notebook)
jupyter nbconvert --execute --to html --output notebook.html --output-dir docs/user $(docs-notebook)
docs: docs/user/notebook.html
cd docs && $(MAKE) html
version:
sed -i.bak "s/__version__ .*/__version__ = \"$(VERSION)\"/" harmony/__init__.py && rm harmony/__init__.py.bak
build: clean version
python -m pip install --upgrade --quiet setuptools wheel twine
python setup.py --quiet sdist bdist_wheel
publish: build
python -m twine check dist/*
python -m twine upload --username "$(REPO_USER)" --password "$(REPO_PASS)" --repository-url "$(REPO)" dist/*