mirror of
https://github.com/chaintool-py/eth-erc20.git
synced 2024-11-21 17:26:47 +01:00
Add missing package path in setup config
This commit is contained in:
parent
b6f116a260
commit
99679fe99f
@ -1 +1 @@
|
||||
include **/*.abi.json
|
||||
include **/data/*.abi.json **/data/*.bin
|
||||
|
@ -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 =
|
||||
|
@ -1,4 +1,11 @@
|
||||
from setuptools import setup
|
||||
|
||||
setup(
|
||||
package_data={
|
||||
'': [
|
||||
'data/GiftableToken.abi.json',
|
||||
'data/GiftableToken.bin',
|
||||
],
|
||||
},
|
||||
include_package_data=True,
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user