-
Notifications
You must be signed in to change notification settings - Fork 366
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Olivier
committed
Oct 16, 2024
1 parent
e8da932
commit 5ca2bbb
Showing
2 changed files
with
54 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
[project] | ||
version = "1.1.5" | ||
name = "asyncua" | ||
description = "Pure Python OPC-UA client and server library" | ||
requires-python = ">=3.10" | ||
readme = "README.md" | ||
license = { text = "GNU Lesser General Public License v3 or later" } | ||
authors = [ | ||
{ name = "Olivier Roulet-Dubonnet", email = "[email protected]" }, | ||
] | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Programming Language :: Python :: 3.13", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
] | ||
dependencies = [ | ||
"aiofiles", | ||
"aiosqlite", | ||
"cryptography>42.0.0", | ||
"pyOpenSSL>23.2.0", | ||
"python-dateutil", | ||
"pytz", | ||
"sortedcontainers", | ||
"typing-extensions", | ||
"wait_for2==0.3.2", | ||
] | ||
|
||
[project.scripts] | ||
uabrowse = "asyncua.tools:uals" | ||
uacall = "asyncua.tools:uacall" | ||
uaclient = "asyncua.tools:uaclient" | ||
uadiscover = "asyncua.tools:uadiscover" | ||
uageneratestructs = "asyncua.tools:uageneratestructs" | ||
uahistoryread = "asyncua.tools:uahistoryread" | ||
uals = "asyncua.tools:uals" | ||
uaread = "asyncua.tools:uaread" | ||
uaserver = "asyncua.tools:uaserver" | ||
uasubscribe = "asyncua.tools:uasubscribe" | ||
uawrite = "asyncua.tools:uawrite" | ||
|
||
[project.urls] | ||
Homepage = "http://freeopcua.github.io/" | ||
|
||
[tool.hatch.version] | ||
path = "asyncua/__init__.py" | ||
|
||
[tool.hatch.build.targets.sdist] | ||
include = ["/asyncua"] |