eth-erc20/python/setup.py

12 lines
246 B
Python
Raw Normal View History

2020-12-01 23:54:17 +01:00
from setuptools import setup
setup(
package_data={
'': [
'data/GiftableToken.abi.json',
'data/GiftableToken.bin',
],
},
include_package_data=True,
2020-12-01 23:54:17 +01:00
)