8 from setuptools
import find_packages
9 from distutils.core
import setup
11 if not hasattr(sys,
'base_prefix')
or sys.base_prefix == sys.prefix:
12 print(
"ERROR: This is not production software, install inside a venv")
15 if sys.version_info < (3, 7):
16 print(
"ERROR: requires python >=3.7")
22 description=
'Interface to zeth operations',
23 packages=find_packages(),
26 "mypy-protobuf==1.23",
30 "click-default-group==1.2",
36 "cryptography==3.3.2",
41 'zeth-helper=zeth.helper.zeth_helper:zeth_helper',
42 'zeth=zeth.cli.zeth:zeth',