mirror of
https://github.com/chaintool-py/eth-erc20.git
synced 2024-11-22 09:46:46 +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
|
include_package_data = True
|
||||||
python_requires = >= 3.6
|
python_requires = >= 3.6
|
||||||
packages =
|
packages =
|
||||||
|
giftable_erc20_token
|
||||||
giftable_erc20_token.runnable
|
giftable_erc20_token.runnable
|
||||||
install_requires =
|
install_requires =
|
||||||
web3==5.12.2
|
web3==5.12.2
|
||||||
|
|
||||||
[options.package_data]
|
[options.package_data]
|
||||||
* = **/*.abi.json
|
* =
|
||||||
|
data/GiftableToken.abi.json
|
||||||
|
data/GiftableToken.bin
|
||||||
|
|
||||||
[options.entry_points]
|
[options.entry_points]
|
||||||
console_scripts =
|
console_scripts =
|
||||||
|
@ -1,4 +1,11 @@
|
|||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
|
package_data={
|
||||||
|
'': [
|
||||||
|
'data/GiftableToken.abi.json',
|
||||||
|
'data/GiftableToken.bin',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
include_package_data=True,
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user