aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjason2017-02-17 16:01:28 -0700
committerjason2017-02-17 16:01:28 -0700
commit172bf68e34363f84e8f83ec7a132174565f92925 (patch)
tree830204efead4df8a37d65762624d10b3a8b71e5e
parentfdd28383be08b8822b315770e92c979f4ca955fe (diff)
downloadeventmq-172bf68e34363f84e8f83ec7a132174565f92925.tar.gz
eventmq-172bf68e34363f84e8f83ec7a132174565f92925.zip
Version bump 0.3.1. Update URL.
-rw-r--r--eventmq/__init__.py2
-rw-r--r--setup.py8
2 files changed, 6 insertions, 4 deletions
diff --git a/eventmq/__init__.py b/eventmq/__init__.py
index 091aeab..ca9b517 100644
--- a/eventmq/__init__.py
+++ b/eventmq/__init__.py
@@ -1,5 +1,5 @@
1__author__ = 'EventMQ Contributors' 1__author__ = 'EventMQ Contributors'
2__version__ = '0.3' 2__version__ = '0.3.1'
3 3
4PROTOCOL_VERSION = 'eMQP/1.0' 4PROTOCOL_VERSION = 'eMQP/1.0'
5 5
diff --git a/setup.py b/setup.py
index 24a364b..f78dbdc 100644
--- a/setup.py
+++ b/setup.py
@@ -7,8 +7,8 @@ from setuptools import find_packages, setup
7 7
8setup( 8setup(
9 name='eventmq', 9 name='eventmq',
10 version='0.3', 10 version='0.3.1',
11 description='EventMQ messaging system based on ZeroMQ', 11 description='EventMQ job execution and messaging system based on ZeroMQ',
12 packages=find_packages(), 12 packages=find_packages(),
13 install_requires=['pyzmq==15.4.0', 13 install_requires=['pyzmq==15.4.0',
14 'six==1.10.0', 14 'six==1.10.0',
@@ -32,7 +32,7 @@ setup(
32 'mock==1.3.0'], 32 'mock==1.3.0'],
33 }, 33 },
34 author='EventMQ Contributors', 34 author='EventMQ Contributors',
35 url='https://github.com/enderlabs/eventmq/', 35 url='https://github.com/eventmq/eventmq/',
36 36
37 # See https://pypi.python.org/pypi?%3Aaction=list_classifiers 37 # See https://pypi.python.org/pypi?%3Aaction=list_classifiers
38 classifiers=[ 38 classifiers=[
@@ -53,6 +53,8 @@ setup(
53 # that you indicate whether you support Python 2, Python 3 or both. 53 # that you indicate whether you support Python 2, Python 3 or both.
54 'Programming Language :: Python :: 2.6', 54 'Programming Language :: Python :: 2.6',
55 'Programming Language :: Python :: 2.7', 55 'Programming Language :: Python :: 2.7',
56 'Programming Language :: Python :: 3.4',
57 'Programming Language :: Python :: 3.5',
56 ], 58 ],
57 scripts=[ 59 scripts=[
58 'bin/emq-cli', 60 'bin/emq-cli',