build notes updated

This commit is contained in:
Nicolas 2025-02-20 13:19:59 +01:00
parent 27514a8438
commit db3bf0d7de
1 changed files with 2 additions and 2 deletions

View File

@ -20,10 +20,10 @@ pytest
# Build package:
pip install build
python3 -m build
python -m build
# Upload
pip install twine
#python3 -m twine upload dist/*
python3 -m twine upload --repository testpypi dist/* # Test repository: https://test.pypi.org/project/example_package_YOUR_USERNAME_HERE
python -m twine upload dist/*
```