https://github.com/laszukdawid/PyEMD
Raw File
Tip revision: 7361a883e21bf92a9a62abfeaceffc38e91955b9 authored by Dawid on 23 May 2023, 21:48:42 UTC
Fix sort
Tip revision: 7361a88
Makefile

test:
	python -m PyEMD.tests.test_all

clean:
	find PyEMD -name __pycache__ -execdir rm -r {} +

.PHONY: doc
doc:
	cd doc && make html

format:
	black PyEMD

lint-check:
	python -m isort --check PyEMD
	python -m black --check PyEMD
back to top