2019-04-24 17:59:13 +00:00
|
|
|
from distutils.core import setup
|
2019-04-22 10:07:55 +00:00
|
|
|
|
2019-03-27 16:28:20 +00:00
|
|
|
setup(
|
|
|
|
name='gen_helpers',
|
2019-05-23 13:11:46 +00:00
|
|
|
packages=['gen_base', 'gen_from_tests'],
|
2019-04-24 17:59:13 +00:00
|
|
|
install_requires=[
|
2019-10-28 13:44:41 +00:00
|
|
|
"ruamel.yaml==0.16.5",
|
2020-08-12 12:48:52 +00:00
|
|
|
"eth-utils==1.6.0",
|
2020-08-27 08:12:31 +00:00
|
|
|
"pytest>=4.4",
|
2020-10-08 18:34:59 +00:00
|
|
|
"python-snappy==0.5.4",
|
2019-04-24 17:59:13 +00:00
|
|
|
]
|
2019-03-27 16:28:20 +00:00
|
|
|
)
|