forked from dwb/jsonrpc2-zeromq-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (35 loc) · 1.19 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Part of the jsonrpc2-zeromq-python project.
# (c) 2012 Wireless Innovation Ltd, All Rights Reserved.
# Please see the LICENSE file in the root of this project for license
# information.
from setuptools import setup
description = "Library for JSON-RPC 2.0 over ZeroMQ"
import os
try:
long_description = open(os.path.join(os.path.dirname(__file__),
'README.rst')).read()
except IOError:
long_description = description
version = "1.1.1"
setup(
name = "jsonrpc2-zeromq",
version = version,
description = description,
long_description = long_description,
url = "https://github.com/wiltd/python-jsonrpc2-zeromq",
download_url = "https://github.com/wiltd/"
"jsonrpc2-zeromq-python/tarball/v%s" % (version,),
classifiers = [
"Programming Language :: Python :: 2.7",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
],
author = "Dan Brown",
author_email = "[email protected]",
packages = ["jsonrpc2_zeromq"],
install_requires=[
"distribute",
"pyzmq==14.3.0",
],
)