2
0
mirror of https://github.com/status-im/eth2.0-specs.git synced 2025-01-10 10:45:46 +00:00

16 lines
335 B
Python

from setuptools import setup, find_packages
setup(
name='pyspec',
packages=find_packages(),
tests_require=["pytest"],
install_requires=[
"eth-utils>=1.3.0,<2",
"eth-typing>=2.1.0,<3.0.0",
"pycryptodome==3.9.4",
"py_ecc==1.7.1",
"ssz==0.1.3",
"dataclasses==0.6",
]
)