Skip to content

Commit

Permalink
Adding how_to_publish
Browse files Browse the repository at this point in the history
  • Loading branch information
fujiisoup committed Aug 14, 2024
1 parent 6b7f0d6 commit 9ac7c7c
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions HOW_TO_PUBLISH.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Publish to Pypi

## Build a wheel
```
python -m build . --sdist
```
(requires `build` library. To install it, do `pip install build`)

## Upload to pypi
```
twine upload --repository pypi .\dist\* --verbose
```
(requires `twine` library. To install it, do `pip install twine`)

0 comments on commit 9ac7c7c

Please sign in to comment.