Skip to content

Commit

Permalink
updated README.md to show possibility of installation via pip; added …
Browse files Browse the repository at this point in the history
…setup.cfg; update setup.py (version will start as 0.1.0)
  • Loading branch information
scgbckbone committed Aug 13, 2020
1 parent e85164d commit 00394a2
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Installation
1. install python3.6 or higher for your OS
2. [install](https://www.linode.com/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/) git
3. install btc_hd_wallet:

a.) via pypi
`pip install btc_hd_wallet`

b.) from source
```shell script
# clone btc-hd-wallet repository
git clone https://github.com/scgbckbone/btc-hd-wallet.git
Expand Down
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[metadata]
license_files = LICENSE
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from setuptools import setup
import os

__version__ = "0.0.1"
__version__ = "0.1.0"

here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.md')) as f:
Expand Down Expand Up @@ -40,7 +40,7 @@
"BIP85",
"BIP39",
],
packages=["btc_hd_wallet"],
packages=["btc_hd_wallet", "btc_hd_wallet/bip39_wordlist"],
zip_safe=False,
install_requires=install_requires,
test_suite="tests"
Expand Down

0 comments on commit 00394a2

Please sign in to comment.