main:
	echo 'usage: make build'

build:
	python -m build

check:
	twine check dist/*

upload:
	twine upload dist/*

clean:
	Remove-Item -Path "dist" -Recurse -Force
	Remove-Item -Path "pyhelmholtz.egg-info" -Recurse -Force
	#rm -rf dist/ pyhelmholtz.egg-info/
