Version 1.0.1+fb.202101140856
This commit is contained in:
parent
25d5f202db
commit
cc9ed3784d
1 changed files with 6 additions and 4 deletions
10
setup.py
10
setup.py
|
@ -1,8 +1,9 @@
|
||||||
from distutils.core import setup
|
from distutils.core import setup
|
||||||
|
import datetime
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='CoAPthon3',
|
name='CoAPthon3',
|
||||||
version='1.0.1',
|
version='1.0.1+fb.' + datetime.datetime.now().strftime("%Y%m%d%H%M"),
|
||||||
packages=[
|
packages=[
|
||||||
'coapthon',
|
'coapthon',
|
||||||
'coapthon.caching',
|
'coapthon.caching',
|
||||||
|
@ -14,12 +15,13 @@ setup(
|
||||||
'coapthon.reverse_proxy',
|
'coapthon.reverse_proxy',
|
||||||
'coapthon.server',
|
'coapthon.server',
|
||||||
],
|
],
|
||||||
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.1.tar.gz',
|
maintainer="Bjoern Freise",
|
||||||
description='CoAPthon is a python library to the CoAP protocol. ',
|
maintainer_email="mcfreis@gmx.net",
|
||||||
|
url="https://github.com/mcfreis/CoAPthon3",
|
||||||
|
description='CoAPthon is a python library to the CoAP protocol.',
|
||||||
scripts=[
|
scripts=[
|
||||||
'coapclient.py',
|
'coapclient.py',
|
||||||
'coapforwardproxy.py',
|
'coapforwardproxy.py',
|
||||||
|
|
Loading…
Reference in a new issue