eth2.0-specs/tests/core/pyspec/setup.py

17 lines
378 B
Python
Raw Normal View History

from setuptools import setup, find_packages
2019-04-24 17:59:13 +00:00
setup(
name='pyspec',
packages=find_packages(),
2020-01-09 14:16:46 +00:00
python_requires=">=3.8, <4",
2019-04-24 17:59:13 +00:00
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==2.0.0",
2019-06-18 20:23:31 +00:00
"dataclasses==0.6",
"remerkleable==0.1.10",
2019-04-24 17:59:13 +00:00
]
)