Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 416 Bytes

README_DEV.md

File metadata and controls

25 lines (18 loc) · 416 Bytes

Running test

pytest

Install local dtt

pip install dist/dtt-{version}.tar.gz

Upload to test.pypi.org

rm -rf dist/*
python setup.py sdist bdist_wheel
python -m twine upload --repository-url https://test.pypi.org/legacy/ dist/*

Upload to pypi.org

rm -rf dist/*
python setup.py sdist bdist_wheel
python -m twine upload --repository-url https://upload.pypi.org/legacy/ dist/*