Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Makefile #72

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 24 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,13 +1,33 @@
.DEFAULT_GOAL := help
.NOTPARALLEL:

.PHONY: help
help: ## Show usage information for this Makefile.
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort \
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a neat trick someone showed me.

| awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'

.PHONY: all
all:
@rm -rf dist/*
python3 setup.py sdist bdist_wheel

upload:
.PHONY: build
build: ## Build the Python package.
python3 setup.py build

.PHONY: install
install: build ## Install the Python package with the --user flag.
python3 setup.py install --user

.PHONY: upload
upload: ## PRODUCTION: Upload the package to the main PyPI repository.
python3 -m twine upload --repository pypi dist/*

upload-test:
.PHONY: upload-test
upload-test: ## STAGING: Upload the package the the test PyPI repository.
python3 -m twine upload --repository testpypi dist/*

clean:
rm -rf build dist onshape_to_robot.egg-info
.PHONY: clean
clean: ## Clean all build artifacts.
python setup.py clean --all
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Added this functional line here based on what I saw in the docs.

rm -rf build dist onshape_to_robot.egg-info docs/build