2018-01-23 11:31:46 +01:00
|
|
|
from distutils.core import setup
|
|
|
|
|
|
|
|
setup(
|
2018-01-25 10:53:13 +01:00
|
|
|
name='CoAPthon3',
|
2018-01-25 10:55:15 +01:00
|
|
|
version='1.0.1',
|
2019-04-23 11:38:45 +02:00
|
|
|
packages=[
|
|
|
|
'coapthon',
|
|
|
|
'coapthon.caching',
|
|
|
|
'coapthon.client',
|
|
|
|
'coapthon.forward_proxy',
|
|
|
|
'coapthon.layers',
|
|
|
|
'coapthon.messages',
|
|
|
|
'coapthon.resources',
|
|
|
|
'coapthon.reverse_proxy',
|
|
|
|
'coapthon.server',
|
|
|
|
],
|
2018-01-25 10:53:13 +01:00
|
|
|
url='https://github.com/Tanganelli/CoAPthon3',
|
2018-01-23 11:31:46 +01:00
|
|
|
license='MIT License',
|
|
|
|
author='Giacomo Tanganelli',
|
|
|
|
author_email='giacomo.tanganelli@for.unipi.it',
|
2018-01-25 10:55:15 +01:00
|
|
|
download_url='https://github.com/Tanganelli/CoAPthon3/archive/1.0.1.tar.gz',
|
2018-01-23 11:31:46 +01:00
|
|
|
description='CoAPthon is a python library to the CoAP protocol. ',
|
2019-04-23 11:38:45 +02:00
|
|
|
scripts=[
|
|
|
|
'coapclient.py',
|
|
|
|
'coapforwardproxy.py',
|
|
|
|
'coapreverseproxy.py',
|
|
|
|
'coapserver.py',
|
|
|
|
'exampleresources.py',
|
|
|
|
],
|
2018-01-23 11:31:46 +01:00
|
|
|
requires=['sphinx', 'cachetools']
|
|
|
|
)
|