From 357b1afe4d09e6abd79a153111e46a9918b7172c Mon Sep 17 00:00:00 2001 From: "giacomo.tanganelli@for.unipi.it" Date: Thu, 25 Jan 2018 10:55:15 +0100 Subject: [PATCH] Porting to Python3 --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 2affdc1..b2c96e8 100644 --- a/setup.py +++ b/setup.py @@ -2,14 +2,14 @@ from distutils.core import setup setup( name='CoAPthon3', - version='1.0.0', + version='1.0.1', packages=['coapthon', 'coapthon.caching', 'coapthon.layers', 'coapthon.client', 'coapthon.server', 'coapthon.messages', 'coapthon.forward_proxy', 'coapthon.resources', 'coapthon.reverse_proxy'], url='https://github.com/Tanganelli/CoAPthon3', license='MIT License', author='Giacomo Tanganelli', author_email='giacomo.tanganelli@for.unipi.it', - download_url='https://github.com/Tanganelli/CoAPthon3/archive/1.0.tar.gz', + download_url='https://github.com/Tanganelli/CoAPthon3/archive/1.0.1.tar.gz', description='CoAPthon is a python library to the CoAP protocol. ', scripts=['coapserver.py', 'coapclient.py', 'exampleresources.py', 'coapforwardproxy.py', 'coapreverseproxy.py'], requires=['sphinx', 'cachetools']