dev instructions

This commit is contained in:
Christian Zangl 2023-12-22 15:19:54 +01:00
parent 9229d463cb
commit 054913ac7b
No known key found for this signature in database
GPG Key ID: 6D468AC36E2A4B3D

View File

@ -195,3 +195,25 @@ error: detected 1 file with damage!
`DMG` indicates damage.
## Development
With pipenv (install with `pipx install pipenv`):
```
# setup
pipenv install
# run chkbit
pipenv run python3 -m cli.main
```
To build a source distribution package from pyproject.toml
```
pipx run build
```
You can then install your own package with
```
pipx install dist/chkbit-*.tar.gz
```