eth-accounts-index/python/setup.py

12 lines
222 B
Python
Raw Normal View History

from setuptools import setup
setup(
2020-11-19 18:09:23 +01:00
package_data={
'': [
'data/*.abi.json',
'data/*.bin',
],
},
include_package_data=True,
)