Add solidity abi to package data

This commit is contained in:
nolash 2020-12-08 16:06:24 +01:00
parent 3b0f1e4500
commit 7af722d2d5
Signed by: lash
GPG Key ID: 21D2E7BB88C2A746
3 changed files with 8 additions and 1 deletions

View File

@ -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
View File

@ -0,0 +1 @@
include **/*.abi.json

View File

@ -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