-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update README with #22 pull request feature Update contributors
- Loading branch information
Showing
6 changed files
with
30 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -141,3 +141,4 @@ share/python-wheels/ | |
.installed.cfg | ||
*.egg | ||
MANIFEST | ||
test/bats |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,3 +12,4 @@ | |
Sebastian Schaetz <seb.schaetz@gmail.com> | ||
Olof Kindgren | ||
Evan Mays <@evanon0ping> | ||
De hekkende krekker |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# How To Release & Publish on Pypi | ||
|
||
|
||
- Update ./setup.py and ./pyproject.toml with correct release number | ||
- Update contributors in ./pyproject.toml and ./AUTHORS | ||
- Prepare the tag and push the commits tagged | ||
- Follow next intructions to build and publish the package | ||
|
||
```bash | ||
|
||
# Install the necessary tools | ||
python -m pip install build twine | ||
|
||
# Build the package | ||
python3 -m build | ||
|
||
# Check the package | ||
twine check dist/* | ||
|
||
# Upload to Pypi once registred | ||
twine upload -r pypi dist/* | ||
``` | ||
|
||
|
||
https://realpython.com/pypi-publish-python-package/#publish-your-package-to-pypi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters