nervtn-tui/Makefile

19 lines
312 B
Makefile
Raw Permalink Normal View History

2021-11-19 23:23:42 +01:00
PYTHON = python3
SRCDIR = .
all: clean sdist wheel
test:
py.test
clean:
rm -rf *.egg-info dist build .eggs .pytest_cache
sdist:
flit -f $(SRCDIR)/pyproject.toml build --no-setup-py --format=sdist
wheel:
flit -f $(SRCDIR)/pyproject.toml build --no-setup-py --format=wheel
.PHONY: clean test sdist wheel