mirror of
https://github.com/status-im/eth2.0-specs.git
synced 2025-01-10 02:35:41 +00:00
14 lines
256 B
Python
14 lines
256 B
Python
from distutils.core import setup
|
|
|
|
setup(
|
|
name='pyspec',
|
|
version='1.0',
|
|
packages=['eth2'],
|
|
install_requires=[
|
|
"eth-utils>=1.3.0,<2",
|
|
"eth-typing>=2.1.0,<3.0.0",
|
|
"pycryptodome==3.7.3",
|
|
"py_ecc>=1.6.0",
|
|
]
|
|
)
|