summaryrefslogtreecommitdiff
path: root/Makefile
blob: 852f22173312567eb4beb48c5140494aabd3efc9 (plain)
1
2
3
4
5
6
7
8
9
10
11
package: COPYING ngus/__init__.py ngus/__main__.py LICENSE README.md setup.py
	python setup.py sdist bdist_wheel

upload: dist/*
	python -m twine upload dist/*

upload-test: dist/*
	python -m twine upload --repository testpypi dist/* 

clean:
	rm -rf build dist ngus/__pycache__ ngus.egg-info