knot-dns/python/knot_exporter/Makefile.am

20 lines
321 B
Makefile
Raw Permalink Normal View History

EXTRA_DIST = \
knot_exporter/__init__.py \
knot_exporter/knot_exporter.py \
pyproject.toml.in \
setup.py.in \
README.md
clean-local:
-rm -rf dist *.egg-info
dist: clean-local
@if hatchling -h &> /dev/null; then \
hatchling build; \
else \
python3 setup.py sdist; \
fi
upload:
twine upload dist/*