mirror of
https://github.com/status-im/eth2.0-specs.git
synced 2025-01-25 01:50:08 +00:00
9 lines
163 B
Python
9 lines
163 B
Python
from distutils.core import setup
|
|
|
|
setup(
|
|
name='gen_helpers',
|
|
version='1.0',
|
|
packages=['gen_base'],
|
|
install_requires=['ruamel.yaml', 'eth-utils']
|
|
)
|