Commit 80fe06bb authored by olivier R-D's avatar olivier R-D

fix typo in setup.py

parent 502ce2b8
...@@ -9,7 +9,7 @@ else: ...@@ -9,7 +9,7 @@ else:
install_requires = [] install_requires = []
setup(name="freeopcua", setup(name="freeopcua",
version="0.9.13", version="0.9.15",
description="Pure Python OPC-UA client and server library", description="Pure Python OPC-UA client and server library",
author="Olivier Roulet-Dubonnet", author="Olivier Roulet-Dubonnet",
author_email="olivier.roulet@gmail.com", author_email="olivier.roulet@gmail.com",
...@@ -29,10 +29,10 @@ setup(name="freeopcua", ...@@ -29,10 +29,10 @@ setup(name="freeopcua",
entry_points={'console_scripts': entry_points={'console_scripts':
[ [
'uaread = opcua.tools:uaread', 'uaread = opcua.tools:uaread',
'uals = opcua.tools:uals' 'uals = opcua.tools:uals',
'uabrowse = opcua.tools:uals' 'uabrowse = opcua.tools:uals',
'uawrite = opcua.tools:uawrite' 'uawrite = opcua.tools:uawrite',
'uasubscribe = opcua.tools:uasubscribe' 'uasubscribe = opcua.tools:uasubscribe',
'uadiscover = opcua.tools:uadiscover' 'uadiscover = opcua.tools:uadiscover'
] ]
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment