Revision 8a30195650636823dc491fe5c93814ab80e35839 authored by Fabian Hofmann on 20 December 2022, 12:46:09 UTC, committed by GitHub on 20 December 2022, 12:46:09 UTC
2 parent s af49562 + 8c3081a
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