Skip to content

Commit

Permalink
Update readme and add some badges (#5)
Browse files Browse the repository at this point in the history
* add note.md

* update readme
  • Loading branch information
7aman authored Jun 2, 2023
1 parent f9f55d6 commit bd167dd
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 1 deletion.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
[![Downloads](https://img.shields.io/pypi/dw/wdpass.svg)](https://pypi.org/project/wdpass/)
[![Published Version](https://img.shields.io/pypi/v/wdpass.svg)](https://pypi.org/project/wdpass/)
![GitHub Release](https://img.shields.io/github/release/7aman/wdpass.svg?label=repo%20version)
[![License: MIT](https://img.shields.io/github/license/7aman/wdpass.svg)](https://github.com/7aman/wdpass/blob/main/LICENSE)

# wdpass

WD Passport Ultra Complete Utilities for Linux.
Expand Down Expand Up @@ -35,7 +40,7 @@ For example on Ubuntu:
```shell
sudo apt install lsscsi python3-dev
sudo python3 -m pip install https://github.com/tvladyslav/py3_sg/archive/master.zip
sudo python3 -m pip install https://github.com/7aman/wdpass/archive/master.zip
sudo python3 -m pip install https://github.com/7aman/wdpass/archive/main.zip
```

## Usage
Expand Down
3 changes: 3 additions & 0 deletions cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"dictionaryDefinitions": [],
"dictionaries": [],
"words": [
"bdist",
"derekhe",
"devel",
"distro",
Expand All @@ -12,6 +13,8 @@
"htonl",
"htons",
"pwblen",
"sdist",
"setuptools",
"tvladyslav",
"Unlocker",
"urandom",
Expand Down
21 changes: 21 additions & 0 deletions notes.md
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/*

```

0 comments on commit bd167dd

Please sign in to comment.