Revision 289535929cc0da82639f6cc20ca3528f170243f8 authored by Fabian on 25 July 2023, 13:27:09 UTC, committed by Fabian on 25 July 2023, 13:27:09 UTC
1 parent e3595a5
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