Skip to content

Commit b7be4f6

Browse files
committed
Bump: Python-BIP38 into v1.0.1 package
1 parent 105f6c5 commit b7be4f6

File tree

3 files changed

+110
-96
lines changed

3 files changed

+110
-96
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ with the owners of this repository before making a change.
1010
To get started, just fork this repo, clone it locally, and run:
1111

1212
```
13-
pip install -e .[tests,docs] -r requirements.txt
13+
pip install -e .[tests,docs]
1414
```
1515

1616
## Pull Request
@@ -52,4 +52,4 @@ tests against a specific version of Python.
5252

5353
## License
5454

55-
Distributed under the [ISC](https://github.com/meherett/python-bip38/blob/master/LICENSE) license. See ``LICENSE`` for more information.
55+
Distributed under the [MIT](https://github.com/meherett/python-bip38/blob/master/LICENSE) license. See ``LICENSE`` for more information.

README.md

Lines changed: 105 additions & 91 deletions
Large diffs are not rendered by default.

bip38/info.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
from typing import List
88

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

0 commit comments

Comments
 (0)