Revision de306b0da8d74b8574d4712cf2e8e21e6bf88db2 authored by Fabian on 02 March 2023, 11:54:11 UTC, committed by Fabian on 02 March 2023, 11:54:11 UTC
1 parent 129a597
Raw File
Makefile
.PHONY : test sdist upload clean dist

test :
	pytest --cov pypsa --cov-report term-missing

sdist :
	python setup.py sdist

upload :
	twine upload dist/*

clean :
	rm dist/*

dist : sdist upload clean
back to top