Add package data

This commit is contained in:
nolash 2020-11-19 18:09:23 +01:00
parent 3264007c57
commit c0f845df32
Signed by: lash
GPG Key ID: 21D2E7BB88C2A746
2 changed files with 13 additions and 3 deletions

View File

@ -21,8 +21,13 @@ licence_files =
LICENSE.txt
[options]
include_package_data = True
python_requires = >= 3.6
packages =
eth_accounts_index
install_requires =
confini==0.2.1
confini==0.2.7
web3==5.12.2
[options.package_data]
* = **/*.abi.json

View File

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