2018-01-23 11:31:46 +01:00
|
|
|
from distutils.core import setup
|
2021-01-14 08:59:32 +01:00
|
|
|
import datetime
|
2018-01-23 11:31:46 +01:00
|
|
|
|
|
|
|
setup(
|
2018-01-25 10:53:13 +01:00
|
|
|
name='CoAPthon3',
|
2021-01-14 08:59:32 +01:00
|
|
|
version='1.0.1+fb.' + datetime.datetime.now().strftime("%Y%m%d%H%M"),
|
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-23 11:31:46 +01:00
|
|
|
license='MIT License',
|
|
|
|
author='Giacomo Tanganelli',
|
|
|
|
author_email='giacomo.tanganelli@for.unipi.it',
|
2021-01-14 08:59:32 +01:00
|
|
|
maintainer="Bjoern Freise",
|
|
|
|
maintainer_email="mcfreis@gmx.net",
|
|
|
|
url="https://github.com/mcfreis/CoAPthon3",
|
|
|
|
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']
|
|
|
|
)
|