Skip to content

Commit

Permalink
Doc (#11)
Browse files Browse the repository at this point in the history
* Doc

* fix doc
  • Loading branch information
kigawas authored Jun 1, 2020
1 parent 7641ce7 commit d2c67ea
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
[![PyPI](https://img.shields.io/pypi/v/bip44.svg)](https://pypi.org/project/bip44/)
[![License](https://img.shields.io/github/license/kigawas/python-bip44.svg)](https://github.com/kigawas/python-bip44)

Simple Python bip44 implementation. Mnemonic + bip32.
Simple Python [bip44](https://github.com/bitcoin/bips/blob/master/bip-0044.mediawiki) implementation. [Mnemonic](https://github.com/trezor/python-mnemonic) + [bip32](https://github.com/darosior/python-bip32).

## Install

Expand Down
22 changes: 16 additions & 6 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "bip44"
version = "0.0.2"
version = "0.0.3"
description = "Simple Python bip44 implementation. Mnemonic + bip32."
repository = "https://github.com/kigawas/python-bip44"
authors = ["Weiliang Li <[email protected]>"]
Expand All @@ -10,7 +10,7 @@ license = "MIT"
keywords = ["bitcoin", "ethereum", "elliptic curves", "cryptocurrency", "blockchain"]

[tool.poetry.dependencies]
python = "^3.6.8"
python = "^3.6"
bip32 = "^0.0.8"
mnemonic = "^0.19"
pysha3 = "^1.0.2"
Expand All @@ -19,7 +19,7 @@ pysha3 = "^1.0.2"
black = "^19.10b0"
mypy = "^0.770"
flake8 = "^3.8.2"
ipython = "^7.14.0"
ipython = { version = "^7.14.0", python = "^3.6.8" }
pytest = "^5.4.2"
pytest-cov = "^2.9.0"

Expand Down

0 comments on commit d2c67ea

Please sign in to comment.