forked from FreeOpcUa/python-opcua
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (42 loc) · 1.8 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
from setuptools import setup, find_packages
import sys
if sys.version_info[0] < 3:
install_requires = ["enum34", "trollius", "futures"]
else:
install_requires = []
setup(name="freeopcua",
version="0.10.6",
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'
]
}
)