Update url

This commit is contained in:
nolash
2021-05-02 16:33:00 +02:00
parent 00db79d6f5
commit 4da58e70c7
8 changed files with 53 additions and 8 deletions

View File

@@ -1 +1 @@
include **/data/GiftableToken.json **/data/GiftableToken.bin requirements.txt test_requirements.txt
include **/data/ERC20.json **/data/GiftableToken.json **/data/GiftableToken.bin requirements.txt test_requirements.txt

View File

@@ -0,0 +1,3 @@
import os
data_dir = os.path.realpath(os.path.dirname(__file__))

View File

@@ -63,8 +63,8 @@ if args.vv:
elif args.v:
logg.setLevel(logging.INFO)
block_last = args.w
block_all = args.ww
block_last = args.w or block_all
passphrase_env = 'ETH_PASSPHRASE'
if args.env_prefix != None:

View File

@@ -1,3 +1,4 @@
confini~=0.3.6rc3
crypto-dev-signer~=0.4.14b2
chainlib~=0.0.2a12
crypto-dev-signer~=0.4.14b3
chainlib~=0.0.3a1
potaahto~=0.0.1a2

View File

@@ -1,10 +1,10 @@
[metadata]
name = giftable-erc20-token
version = 0.0.8a9
description = Simple ERC20 contract with deployment script that lets any address mint and gift itself tokens.
name = eth-erc20
version = 0.0.9a1
description = ERC20 interface and simple contract with deployment script that lets any address mint and gift itself tokens.
author = Louis Holbrook
author_email = dev@holbrook.no
url = https://gitlab.com/nolash/giftable-erc-token
url = https://gitlab.com/nolash/eth-erc20
keywords =
ethereum
classifiers =
@@ -27,14 +27,20 @@ packages =
giftable_erc20_token
giftable_erc20_token.runnable
giftable_erc20_token.data
eth_erc20
eth_erc20.data
eth_erc20.runnable
[options.package_data]
* =
data/GiftableToken.json
data/GiftableToken.bin
data/ERC20.json
[options.entry_points]
console_scripts =
giftable-token-deploy = giftable_erc20_token.runnable.deploy:main
giftable-token-gift = giftable_erc20_token.runnable.gift:main
giftable-token-minter = giftable_erc20_token.runnable.minter:main
erc20-transfer = eth_erc20.runnable.transfer:main
erc20-balance = eth_erc20.runnable.balance:main

View File

@@ -0,0 +1,3 @@
eth_tester==0.5.0b3
py-evm==0.3.0a20
pytest==6.0.1