11 lines
200 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',
packages=['gen_base', 'gen_from_tests'],
2019-04-24 11:59:13 -06:00
install_requires=[
2019-05-21 22:55:22 +02:00
"ruamel.yaml==0.15.96",
"eth-utils==1.6.0"
2019-04-24 11:59:13 -06:00
]
)