From cc9ed3784d1f1819d7d693534077b9f2160a1d61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Freise?= Date: Thu, 14 Jan 2021 08:59:32 +0100 Subject: [PATCH] Version 1.0.1+fb.202101140856 --- setup.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 884e0ed..be333d5 100644 --- a/setup.py +++ b/setup.py @@ -1,8 +1,9 @@ from distutils.core import setup +import datetime setup( name='CoAPthon3', - version='1.0.1', + version='1.0.1+fb.' + datetime.datetime.now().strftime("%Y%m%d%H%M"), packages=[ 'coapthon', 'coapthon.caching', @@ -14,12 +15,13 @@ setup( 'coapthon.reverse_proxy', 'coapthon.server', ], - url='https://github.com/Tanganelli/CoAPthon3', license='MIT License', author='Giacomo Tanganelli', author_email='giacomo.tanganelli@for.unipi.it', - download_url='https://github.com/Tanganelli/CoAPthon3/archive/1.0.1.tar.gz', - description='CoAPthon is a python library to the CoAP protocol. ', + maintainer="Bjoern Freise", + maintainer_email="mcfreis@gmx.net", + url="https://github.com/mcfreis/CoAPthon3", + description='CoAPthon is a python library to the CoAP protocol.', scripts=[ 'coapclient.py', 'coapforwardproxy.py',