mirror of
https://github.com/status-im/eth2.0-specs.git
synced 2025-01-12 11:44:41 +00:00
12 lines
223 B
Python
12 lines
223 B
Python
from distutils.core import setup
|
|
|
|
setup(
|
|
name='gen_helpers',
|
|
packages=['gen_base', 'gen_from_tests'],
|
|
install_requires=[
|
|
"ruamel.yaml==0.16.5",
|
|
"eth-utils==1.6.0",
|
|
"pytest>=4.4",
|
|
]
|
|
)
|