Dorothydu's picture
Upload 50 random repository samples
9d3c8f5 verified
raw
history blame
353 Bytes
develop:
# this makes it possible to run unit tests
python3 setup.py develop
build:
# this builds the packages for pypi
# might need to run pip install wheel
python3 setup.py sdist bdist_wheel
upload:
# this uploads the packages to pypi
twine upload dist/*
clean:
rm -rf dist build
test:
ls tests/manual | xargs -I {} python "tests/manual/{}"