diff --git a/bdk-python/README.md b/bdk-python/README.md index 45cf3c6..b99bbd9 100644 --- a/bdk-python/README.md +++ b/bdk-python/README.md @@ -12,9 +12,9 @@ pip install bdkpython ## Run the tests ```shell pip install --requirement requirements.txt -bash ./generate.sh +bash ./scripts/generate-linux.sh # here you should run the script appropriate for your platform python setup.py bdist_wheel --verbose -pip install ./dist/bdkpython--py3-none-any.whl --force-reinstall +pip install ./dist/bdkpython-.whl --force-reinstall python -m unittest --verbose tests/test_bdk.py ``` @@ -23,26 +23,14 @@ python -m unittest --verbose tests/test_bdk.py # Install dependencies pip install --requirement requirements.txt -# Generate the bindings -bash generate.sh +# Generate the bindings (use the script appropriate for your platform) +bash ./scripts/generate-linux.sh # Build the wheel python setup.py --verbose bdist_wheel ``` -## Run tox to build and test locally -```shell -# install dev requirements -pip install --requirement requirements-dev.txt - -# build bindings glue code (located at ./src/bdkpython/bdk.py) -source ./generate.sh - -# build and test -tox -vv -``` - ## Install locally ```shell -pip install ./dist/bdkpython--py3-none-any.whl +pip install ./dist/bdkpython-.whl ```