diff --git a/README.md b/README.md index ce3cde2..c0c8bb7 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..8183238 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[metadata] +license_files = LICENSE diff --git a/setup.py b/setup.py index 97e3a1e..b0d6b49 100644 --- a/setup.py +++ b/setup.py @@ -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: @@ -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"