Repository URL to install this package:
|
Version:
0.3 ▾
|
fury_pyre
/
setup.py
|
|---|
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='fury_pyre',
version='0.3',
description='Python ZRE implementation',
author='Arnaud Loonstra',
author_email='arnaud@sphaero.org',
url='http://www.github.com/zeromq/pyre/',
packages=['pyre'],
include_package_data=True,
requires=['pyzmq', 'ipaddress'],
install_requires=['pyzmq', 'ipaddress'],
)