mirror of
https://github.com/chaintool-py/eth-erc20.git
synced 2024-11-22 09:46:46 +01:00
Add solidity abi to package data
This commit is contained in:
parent
3b0f1e4500
commit
7af722d2d5
@ -1,3 +1,5 @@
|
|||||||
|
* 0.0.4
|
||||||
|
- Bundle abi in data subfolder
|
||||||
* 0.0.3
|
* 0.0.3
|
||||||
- Add gift executable
|
- Add gift executable
|
||||||
* 0.0.2
|
* 0.0.2
|
||||||
|
1
python/MANIFEST.in
Normal file
1
python/MANIFEST.in
Normal file
@ -0,0 +1 @@
|
|||||||
|
include **/*.abi.json
|
@ -1,6 +1,6 @@
|
|||||||
[metadata]
|
[metadata]
|
||||||
name = giftable-erc20-token
|
name = giftable-erc20-token
|
||||||
version = 0.0.3
|
version = 0.0.4
|
||||||
description = Simple ERC20 contract with deployment script that lets any address mint and gift itself tokens.
|
description = Simple ERC20 contract with deployment script that lets any address mint and gift itself tokens.
|
||||||
author = Louis Holbrook
|
author = Louis Holbrook
|
||||||
author_email = dev@holbrook.no
|
author_email = dev@holbrook.no
|
||||||
@ -21,12 +21,16 @@ licence_files =
|
|||||||
LICENSE
|
LICENSE
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
|
include_package_data = True
|
||||||
python_requires = >= 3.6
|
python_requires = >= 3.6
|
||||||
packages =
|
packages =
|
||||||
giftable_erc20_token.runnable
|
giftable_erc20_token.runnable
|
||||||
install_requires =
|
install_requires =
|
||||||
web3==5.12.2
|
web3==5.12.2
|
||||||
|
|
||||||
|
[options.package_data]
|
||||||
|
* = **/*.abi.json
|
||||||
|
|
||||||
[options.entry_points]
|
[options.entry_points]
|
||||||
console_scripts =
|
console_scripts =
|
||||||
giftable-token-deploy = giftable_erc20_token.runnable.deploy:main
|
giftable-token-deploy = giftable_erc20_token.runnable.deploy:main
|
||||||
|
Loading…
Reference in New Issue
Block a user