Porting to Python3
This commit is contained in:
parent
c6554b5d0d
commit
357b1afe4d
1 changed files with 2 additions and 2 deletions
4
setup.py
4
setup.py
|
@ -2,14 +2,14 @@ from distutils.core import setup
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='CoAPthon3',
|
name='CoAPthon3',
|
||||||
version='1.0.0',
|
version='1.0.1',
|
||||||
packages=['coapthon', 'coapthon.caching', 'coapthon.layers', 'coapthon.client', 'coapthon.server', 'coapthon.messages',
|
packages=['coapthon', 'coapthon.caching', 'coapthon.layers', 'coapthon.client', 'coapthon.server', 'coapthon.messages',
|
||||||
'coapthon.forward_proxy', 'coapthon.resources', 'coapthon.reverse_proxy'],
|
'coapthon.forward_proxy', 'coapthon.resources', 'coapthon.reverse_proxy'],
|
||||||
url='https://github.com/Tanganelli/CoAPthon3',
|
url='https://github.com/Tanganelli/CoAPthon3',
|
||||||
license='MIT License',
|
license='MIT License',
|
||||||
author='Giacomo Tanganelli',
|
author='Giacomo Tanganelli',
|
||||||
author_email='giacomo.tanganelli@for.unipi.it',
|
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. ',
|
description='CoAPthon is a python library to the CoAP protocol. ',
|
||||||
scripts=['coapserver.py', 'coapclient.py', 'exampleresources.py', 'coapforwardproxy.py', 'coapreverseproxy.py'],
|
scripts=['coapserver.py', 'coapclient.py', 'exampleresources.py', 'coapforwardproxy.py', 'coapreverseproxy.py'],
|
||||||
requires=['sphinx', 'cachetools']
|
requires=['sphinx', 'cachetools']
|
||||||
|
|
Loading…
Reference in a new issue