diff --git a/README.md b/README.md index d449020..18f17c6 100644 --- a/README.md +++ b/README.md @@ -165,6 +165,40 @@ Note, that the `numbers.py` module imports a function from the `addition`. +## Distribute your package + +Full pyproject.toml file... + +README.md + +LICENSE + +pypi.org + +```sh +python3 -m build +``` + +```sh +python3 -m twine upload dist/* +``` + +token + + +## Package version + + +## Unit tests + +pytest + +coverage +```sh +pytest -v --cov-report html --cov numerix tests/ +``` + +## Documentation