https://github.com/PyPSA/PyPSA
Raw File
Tip revision: 127ab8976b4426471e65609293ccf22d8fe8febd authored by Fabian Neumann on 10 May 2023, 15:25:51 UTC
Merge pull request #629 from PyPSA/prep-v0.23
Tip revision: 127ab89
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