Skip to content

Commit

Permalink
Bump: Python-BIP38 into v1.0.1 package
Browse files Browse the repository at this point in the history
  • Loading branch information
meherett committed Aug 13, 2024
1 parent 105f6c5 commit b7be4f6
Show file tree
Hide file tree
Showing 3 changed files with 110 additions and 96 deletions.
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ with the owners of this repository before making a change.
To get started, just fork this repo, clone it locally, and run:

```
pip install -e .[tests,docs] -r requirements.txt
pip install -e .[tests,docs]
```

## Pull Request
Expand Down Expand Up @@ -52,4 +52,4 @@ tests against a specific version of Python.

## License

Distributed under the [ISC](https://github.com/meherett/python-bip38/blob/master/LICENSE) license. See ``LICENSE`` for more information.
Distributed under the [MIT](https://github.com/meherett/python-bip38/blob/master/LICENSE) license. See ``LICENSE`` for more information.
196 changes: 105 additions & 91 deletions README.md

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions bip38/info.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@
from typing import List

__name__: str = "bip38"
__version__: str = "v1.0.0"
__version__: str = "v1.0.1"
__license__: str = "MIT"
__author__: str = "Meheret Tesfaye Batu"
__email__: str = "[email protected]"
__documentation__: str = "https://bip38.readthedocs.com"
__description__: str = "Python library for implementation of Bitcoin Improvement Proposal - 0038 / BIP38 protocol."
__description__: str = "A Python library for implementation of Bitcoin Improvement Proposal - 0038 / BIP38 protocol."
__url__: str = "https://github.com/meherett/python-bip38"
__tracker__: str = f"{__url__}/issues"
__keywords__: List[str] = [
"bip38", "bitcoin", "private-key", "pure-python", "encrypt", "decrypt", "passphrase", "wif", "bip-0038"
"bip38", "bitcoin", "private-key", "hdwallet", "encrypt", "decrypt", "passphrase", "wif", "bip-0038"
]

0 comments on commit b7be4f6

Please sign in to comment.