mirror of
https://github.com/chaintool-py/eth-erc20.git
synced 2026-05-14 19:38:42 +02:00
Update url
This commit is contained in:
@@ -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
|
||||
|
||||
3
python/giftable_erc20_token/data/__init__.py
Normal file
3
python/giftable_erc20_token/data/__init__.py
Normal file
@@ -0,0 +1,3 @@
|
||||
import os
|
||||
|
||||
data_dir = os.path.realpath(os.path.dirname(__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:
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
3
python/test_requirements.txt
Normal file
3
python/test_requirements.txt
Normal file
@@ -0,0 +1,3 @@
|
||||
eth_tester==0.5.0b3
|
||||
py-evm==0.3.0a20
|
||||
pytest==6.0.1
|
||||
Reference in New Issue
Block a user