mirror of
https://github.com/status-im/eth2.0-specs.git
synced 2025-01-13 12:14:19 +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.96"
|
|
]
|
|
)
|