Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
wiseplat
GitHub Repository: wiseplat/python-code
Path: blob/master/ invest-robot-contest_tinvest_robot-master/Makefile
5925 views
.PHONY: dist

clean:
	rm -rf build/ dist/ *.egg-info/ __pycache__/ */__pycache__/ .pytest_cache/
	rm -f *.pyc */*.pyc

install:
	python3 setup.py sdist bdist_wheel

test:
	pytest

upload:
	twine upload --repository pypi dist/*