blob: 12db71cf05f0a09d28e8c9eee78a7462d57ebdb4 (
plain)
1
2
3
4
5
6
7
|
all : build
build :
cd example_pkg && python3 setup.py sdist bdist_wheel
publish : build
cd example_pkg && python3 -m twine upload --repository-url https://test.pypi.org/legacy/ dist/*
|