-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from gnosis/gabriel/fixed-publishing
Gabriel/fixed publishing
- Loading branch information
Showing
3 changed files
with
5 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -61,4 +61,4 @@ jobs: | |
user: __token__ | ||
password: ${{ secrets.PYPI_TOKEN }} | ||
verify-metadata: false | ||
verbose: true | ||
verbose: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 <[email protected]>"] | ||
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" } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
PORT=3001 | ||
BROWSER=none | ||
REACT_APP_RAINBOW_WALLET_PROJECT_ID= | ||
REACT_APP_RAINBOW_PROJECT_ID= | ||
PYPI_TOKEN= |