My somewhat ham-fisted usage of twine requires that there is just one file in the dist-directory.
10 lines
160 B
Makefile
10 lines
160 B
Makefile
test:
|
|
python3 -m unittest discover
|
|
python2 -m unittest discover
|
|
|
|
uppload:
|
|
mkdir -p dist.old
|
|
mv dist/* dist.old/
|
|
python setup.py sdist
|
|
twine upload dist/*
|