This commit is contained in:
Jan Benda 2024-04-23 18:55:14 +02:00
parent 9b044b6077
commit 736fa319b9

View File

@ -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