nervtn-server/Makefile

19 lines
312 B
Makefile
Raw Permalink Normal View History

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