mirror of
https://github.com/status-im/eth2.0-specs.git
synced 2025-01-09 18:25:47 +00:00
691c25ab38
Fixes build errors for python 3.8.
10 lines
161 B
Python
10 lines
161 B
Python
from distutils.core import setup
|
|
|
|
setup(
|
|
name='config_helpers',
|
|
packages=['preset_loader'],
|
|
install_requires=[
|
|
"ruamel.yaml==0.16.5"
|
|
]
|
|
)
|