mirror of
https://github.com/ethereum/consensus-specs.git
synced 2026-02-02 17:35:03 -05: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"
|
|
]
|
|
)
|