From 736fa319b9da2efa26d62daf87ff1ebc41d5fee3 Mon Sep 17 00:00:00 2001 From: Jan Benda Date: Tue, 23 Apr 2024 18:55:14 +0200 Subject: [PATCH] outlook --- README.md | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) 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