11 lines
182 B
Python
Raw Normal View History

2019-04-24 11:59:13 -06:00
from distutils.core import setup
2019-04-22 18:07:55 +08:00
setup(
name='gen_helpers',
2019-04-24 11:59:13 -06:00
packages=['gen_base'],
install_requires=[
"ruamel.yaml==0.15.87",
"eth-utils==1.4.1"
]
)