19 lines
402 B
Makefile
19 lines
402 B
Makefile
all: build
|
|
|
|
build:
|
|
# Build Python package
|
|
test -d build/ && rm -rf build/ || true
|
|
test -d dist/ && rm -rf dist/ || true
|
|
test -d *.egg-info/ && rm -rf *.egg-info/ || true
|
|
python -m build
|
|
rm -rv *.egg-info/
|
|
|
|
install:
|
|
# Install package from built tarball
|
|
pip install dist/*.tar.gz
|
|
|
|
cp:
|
|
# Copy package to site downloads dir
|
|
mkdir -p docs/static/downloads
|
|
cp dist/*.tar.gz docs/static/downloads/
|