2018-01-23 11:31:46 +01:00
|
|
|
from distutils.core import setup
|
|
|
|
|
|
|
|
setup(
|
2018-01-25 10:53:13 +01:00
|
|
|
name='CoAPthon3',
|
|
|
|
version='1.0.0',
|
2018-01-23 11:31:46 +01:00
|
|
|
packages=['coapthon', 'coapthon.caching', 'coapthon.layers', 'coapthon.client', 'coapthon.server', 'coapthon.messages',
|
|
|
|
'coapthon.forward_proxy', 'coapthon.resources', 'coapthon.reverse_proxy'],
|
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:53:13 +01:00
|
|
|
download_url='https://github.com/Tanganelli/CoAPthon3/archive/1.0.tar.gz',
|
2018-01-23 11:31:46 +01:00
|
|
|
description='CoAPthon is a python library to the CoAP protocol. ',
|
|
|
|
scripts=['coapserver.py', 'coapclient.py', 'exampleresources.py', 'coapforwardproxy.py', 'coapreverseproxy.py'],
|
|
|
|
requires=['sphinx', 'cachetools']
|
|
|
|
)
|