Upstream: https://github.com/Rhoban/onshape-to-robot Upstream-Commit: 80e710700aac9573a2230f74f7ce9e094833a0bc Upstream-Branch: master
14 lines
238 B
Makefile
14 lines
238 B
Makefile
|
|
all:
|
|
@rm -rf dist/*
|
|
python3 setup.py sdist bdist_wheel
|
|
|
|
upload:
|
|
python3 -m twine upload --repository pypi dist/*
|
|
|
|
upload-test:
|
|
python3 -m twine upload --repository testpypi dist/*
|
|
|
|
clean:
|
|
rm -rf build dist onshape_to_robot.egg-info
|