pip-compile requirements.in
pip-compile dev_requirements.in
mypy t3py/**/*.py --check-untyped-defs
git tag -a v1.0.0 -m "Release version 1.0.0"
git push origin v1.0.0
Reinstall the package locally to test:
pip install -e .
Test the command:
t3py
This generates the dist/ directory containing .tar.gz and .whl files.
python -m build
This uploads the dist/ package to pypi
twine upload dist/*