Porting to Python3
This commit is contained in:
parent
fe716fff7a
commit
c6554b5d0d
2 changed files with 6 additions and 3 deletions
2
setup.cfg
Normal file
2
setup.cfg
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
[metadata]
|
||||||
|
description-file = README.md
|
7
setup.py
7
setup.py
|
@ -1,14 +1,15 @@
|
||||||
from distutils.core import setup
|
from distutils.core import setup
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='CoAPthon',
|
name='CoAPthon3',
|
||||||
version='4.0.2',
|
version='1.0.0',
|
||||||
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/CoAPthon',
|
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',
|
||||||
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