Add missing package path in setup config

This commit is contained in:
nolash 2020-12-08 18:02:14 +01:00
parent b6f116a260
commit 99679fe99f
Signed by: lash
GPG Key ID: 21D2E7BB88C2A746
3 changed files with 12 additions and 2 deletions

View File

@ -1 +1 @@
include **/*.abi.json
include **/data/*.abi.json **/data/*.bin

View File

@ -24,12 +24,15 @@ licence_files =
include_package_data = True
python_requires = >= 3.6
packages =
giftable_erc20_token
giftable_erc20_token.runnable
install_requires =
web3==5.12.2
[options.package_data]
* = **/*.abi.json
* =
data/GiftableToken.abi.json
data/GiftableToken.bin
[options.entry_points]
console_scripts =

View File

@ -1,4 +1,11 @@
from setuptools import setup
setup(
package_data={
'': [
'data/GiftableToken.abi.json',
'data/GiftableToken.bin',
],
},
include_package_data=True,
)