Codebase list python-lsassy / run/617fc7b9-2e4b-46bc-9e68-b7c2b4d733bc/main Makefile
run/617fc7b9-2e4b-46bc-9e68-b7c2b4d733bc/main

Tree @run/617fc7b9-2e4b-46bc-9e68-b7c2b4d733bc/main (Download .tar.gz)

Makefile @run/617fc7b9-2e4b-46bc-9e68-b7c2b4d733bc/mainraw · history · blame

clean:
	rm -f -r build/
	rm -f -r dist/
	rm -f -r *.egg-info
	find . -name '*.pyc' -exec rm -f {} +
	find . -name '*.pyo' -exec rm -f {} +
	find . -name '*~' -exec rm -f  {} +

publish: clean
	python3.7 setup.py sdist bdist_wheel
	python3.7 -m twine upload dist/*

testpublish: clean
	python3.7 setup.py sdist bdist_wheel
	python3.7 -m twine upload --repository-url https://test.pypi.org/legacy/ dist/*

rebuild: clean
	python3.7 setup.py install

build: clean
	python3.7 setup.py install

install: build

test:
	python3.7 setup.py test