forked from derekhe/wdpassport-utils
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update readme and add some badges (#5)
* add note.md * update readme
- Loading branch information
Showing
3 changed files
with
30 additions
and
1 deletion.
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
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,21 @@ | ||
# Notes | ||
|
||
## Release | ||
|
||
```shell | ||
python3 -m pip install twine setuptools | ||
python3 setup.py sdist bdist_wheel | ||
|
||
# test upload | ||
python3 -m twine upload --repository-url https://test.pypi.org/legacy/ dist/* | ||
|
||
# test install | ||
python3 -m pip install --user --index-url https://test.pypi.org/simple/ wdpass | ||
# or specify the version | ||
python3 -m pip install --user --index-url https://test.pypi.org/simple/ wdpass==0.1.0 | ||
|
||
|
||
# real upload | ||
python3 -m twine upload dist/* | ||
|
||
``` |