diff --git a/python/setup.cfg b/python/setup.cfg index eff01b9..5162446 100644 --- a/python/setup.cfg +++ b/python/setup.cfg @@ -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 diff --git a/python/setup.py b/python/setup.py index 9ece291..0f9b799 100644 --- a/python/setup.py +++ b/python/setup.py @@ -1,6 +1,11 @@ from setuptools import setup setup( - scripts=[ - ] + package_data={ + '': [ + 'data/*.abi.json', + 'data/*.bin', + ], + }, + include_package_data=True, )