forked from FreeOpcUa/python-opcua
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (47 loc) · 1.91 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
from setuptools import setup, find_packages
import sys
install_requires = [
"lxml",
"python-dateutil",
"pytz",
"enum34; python_version < '3'",
"futures; python_version < '3'",
"trollius; python_version < '3'",
]
setup(name="opcua",
version="0.98.13",
description="Pure Python OPC-UA client and server library",
author="Olivier Roulet-Dubonnet",
author_email="olivier.roulet@gmail.com",
url='http://freeopcua.github.io/',
packages=find_packages(),
provides=["opcua"],
license="GNU Lesser General Public License v3 or later",
install_requires=install_requires,
extras_require={
'encryption': ['cryptography']
},
classifiers=["Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 2",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Topic :: Software Development :: Libraries :: Python Modules",
],
entry_points={'console_scripts':
[
'uaread = opcua.tools:uaread',
'uals = opcua.tools:uals',
'uabrowse = opcua.tools:uals',
'uawrite = opcua.tools:uawrite',
'uasubscribe = opcua.tools:uasubscribe',
'uahistoryread = opcua.tools:uahistoryread',
'uaclient = opcua.tools:uaclient',
'uaserver = opcua.tools:uaserver',
'uadiscover = opcua.tools:uadiscover',
'uacall = opcua.tools:uacall',
]
}
)