mirror of
https://github.com/status-im/eth2.0-specs.git
synced 2025-01-14 04:34:43 +00:00
10 lines
162 B
Python
10 lines
162 B
Python
|
from distutils.core import setup
|
||
|
|
||
|
setup(
|
||
|
name='config_helpers',
|
||
|
packages=['preset_loader'],
|
||
|
install_requires=[
|
||
|
"ruamel.yaml==0.15.87"
|
||
|
]
|
||
|
)
|