mirror of https://github.com/jtesta/ssh-audit.git
12 lines
201 B
Makefile
12 lines
201 B
Makefile
|
all:
|
||
|
python3 setup.py sdist bdist_wheel
|
||
|
|
||
|
uploadtest:
|
||
|
twine upload --repository-url https://test.pypi.org/legacy/ dist/*
|
||
|
|
||
|
uploadprod:
|
||
|
twine upload dist/*
|
||
|
|
||
|
clean:
|
||
|
rm -rf build/ dist/ src/*.egg-info/
|