mirror of
https://github.com/status-im/eth2.0-specs.git
synced 2025-01-10 02:35:41 +00:00
11 lines
182 B
Python
11 lines
182 B
Python
from distutils.core import setup
|
|
|
|
setup(
|
|
name='gen_helpers',
|
|
packages=['gen_base'],
|
|
install_requires=[
|
|
"ruamel.yaml==0.15.87",
|
|
"eth-utils==1.4.1"
|
|
]
|
|
)
|