-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
35 lines (32 loc) · 1.11 KB
/
pyproject.toml
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
[tool.poetry]
name = "openopc2"
version = "0.1.18"
description = "OPC library with a Windows gateway enabling non-Windows clients to access OPC-DA calls."
license = "GPL-2.0-or-later"
readme = "README.md"
authors = [
"Lorenz Padberg <[email protected]>",
"Elia Bieri <[email protected]>",
]
repository = "https://github.com/iterativ/openopc2"
keywords = ["opc", "openopc", "opc-da", "opc classic"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Human Machine Interfaces",
"Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator",
"Intended Audience :: Manufacturing",
]
[tool.poetry.dependencies]
python = "<3.13,>=3.8"
pyro5 = "^5.14"
WMI = { version = "^1.5.1", markers = "sys_platform == 'win32'" }
pywin32 = { version = "304", markers = "sys_platform == 'win32'" }
typer = { extras = ["all"], version = "^0.6.1" }
rich = "^12.6.0"
[tool.poetry.group.dev.dependencies]
coverage = "^6.5.0"
pyinstaller = "^5.6.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"