Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions mps-cli-py/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,16 @@ The library has currently the following limitations:

### Build and upload to pypi.org

- `increae version number`
#### Mac
- `increase version number`
- `python3 -m build`
- `python3 -m twine upload dist/*`
- `python3 -m twine upload dist/*`

### Win
- `increase version number`
- `py -m build`
- `py -m twine upload dist/*`

To install build and twine:
- `py -m pip install --upgrade build`
- `py -m pip install --upgrade twine`
2 changes: 1 addition & 1 deletion mps-cli-py/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "mps-cli"
version = "0.2.0"
version = "0.4.0"
authors = [
{ name="Daniel Ratiu", email="ratiud@googlemail.com" },
]
Expand Down
Loading