commit c0f845df3229a8a48ff9c8829c7a348c25969c36
parent 3264007c570c2a9434b8394af9c0417cb29503bf
Author: nolash <dev@holbrook.no>
Date: Thu, 19 Nov 2020 18:09:23 +0100
Add package data
Diffstat:
2 files changed, 13 insertions(+), 3 deletions(-)
diff --git 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
@@ -1,6 +1,11 @@
from setuptools import setup
setup(
- scripts=[
- ]
+ package_data={
+ '': [
+ 'data/*.abi.json',
+ 'data/*.bin',
+ ],
+ },
+ include_package_data=True,
)