mirror of
https://github.com/xtacocorex/CHIP_IO
synced 2025-07-20 12:53:22 +00:00
20 lines
281 B
Makefile
20 lines
281 B
Makefile
package: clean
|
|
python setup.py sdist
|
|
|
|
publish: package
|
|
twine upload dist/*
|
|
|
|
clean:
|
|
rm -rf CHIP_IO.* build dist
|
|
rm -f *.pyo
|
|
rm -f *.egg
|
|
rm -f overlays/*.pyo overlays/*.pyc
|
|
tests:
|
|
py.test
|
|
|
|
build:
|
|
python setup.py build --force
|
|
|
|
install: build
|
|
python setup.py install --force
|