https://github.com/PyPSA/PyPSA
Raw File
Tip revision: 4cdfda6a54a26e7ee383a1cac50bb382ec8b5f3d authored by Fabian Neumann on 10 May 2023, 09:04:30 UTC
make compression work with netcdf>=4.9
Tip revision: 4cdfda6
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