diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 6f578f4..b35b439 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -61,4 +61,4 @@ jobs: user: __token__ password: ${{ secrets.PYPI_TOKEN }} verify-metadata: false - verbose: true + verbose: true \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 4d41ecc..4b29eeb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,12 +1,13 @@ [tool.poetry] name = "python-web3-wallet" -version = "0.0.12" +version = "0.0.14" description = "Streamlit component that allows users to connect a wallet and send transactions with dynamic recipients and amounts" authors = ["Gnosis AI "] license = "MIT" readme = "README.md" +# If format not specified, include only applies to sdist not wheel https://python-poetry.org/docs/pyproject/#exclude-and-include. include = [ - "python_web3_wallet/frontend/build/**/*" + { path = "python_web3_wallet/frontend/build/**/*", format = ["sdist", "wheel"] } ] packages = [ { include = "python_web3_wallet" } diff --git a/python_web3_wallet/frontend/.env.example b/python_web3_wallet/frontend/.env.example index cb7884e..74d6fcc 100644 --- a/python_web3_wallet/frontend/.env.example +++ b/python_web3_wallet/frontend/.env.example @@ -1,4 +1,4 @@ PORT=3001 BROWSER=none -REACT_APP_RAINBOW_WALLET_PROJECT_ID= +REACT_APP_RAINBOW_PROJECT_ID= PYPI_TOKEN= \ No newline at end of file