ZIO
Python and C++ interface to ZeroMQ and Zyre
setup.py
Go to the documentation of this file.
1 import setuptools
2 
3 setuptools.setup(
4  name="zio",
5  version="0.0.0",
6  author="Brett Viren",
7  author_email="brett.viren@gmail.com",
8  description="A high level C++ interface to ZeroMQ and Zyre",
9  url="https://brettviren.github.io/zio",
10  packages=setuptools.find_packages(),
11  python_requires='>=3.3', # how to know?
12  install_requires = [
13  "click",
14  "pyzmq", # note: must install first manually to get "draft" sockets!
15  "pyre==0.3.2", # note: see requirements.txt
16  "h5py",
17  "rule==0.1.2bv", # note: see requirements.txt
18  "pyparsing",
19  "jsonnet",
20  ],
21  entry_points = dict(
22  console_scripts = [
23  'zio = zio.__main__:main',
24  ]
25  ),
26 )
27