eth2.0-specs/test_libs/pyspec/setup.py

16 lines
338 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(),
tests_require=["pytest"],
install_requires=[
"eth-utils>=1.3.0,<2",
"eth-typing>=2.1.0,<3.0.0",
"pycryptodome==3.7.3",
2019-07-16 06:27:34 +00:00
"py_ecc==1.7.1",
"ssz==0.1.0a11",
2019-06-18 20:23:31 +00:00
"dataclasses==0.6",
2019-04-24 17:59:13 +00:00
]
)