Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
opcua-asyncio
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Nikola Balog
opcua-asyncio
Commits
aaa9c3a5
Commit
aaa9c3a5
authored
Oct 16, 2024
by
Olivier
Committed by
oroulet
Oct 24, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
move to pyproject.toml
parent
ac141d75
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
54 additions
and
56 deletions
+54
-56
pyproject.toml
pyproject.toml
+54
-0
setup.py
setup.py
+0
-56
No files found.
pyproject.toml
0 → 100644
View file @
aaa9c3a5
[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
=
"olivier.roulet@gmail.com"
}
,
]
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"]
setup.py
deleted
100644 → 0
View file @
ac141d75
from
setuptools
import
setup
,
find_packages
import
sys
# read the contents of your README file
from
os
import
path
this_directory
=
path
.
abspath
(
path
.
dirname
(
__file__
))
with
open
(
path
.
join
(
this_directory
,
'README.md'
),
encoding
=
'utf-8'
)
as
f
:
long_description
=
f
.
read
()
# don't require pytest-runner unless we have been invoked as a test launch
needs_pytest
=
{
'pytest'
,
'test'
,
'ptr'
}.
intersection
(
sys
.
argv
)
pytest_runner
=
[
'pytest-runner'
]
if
needs_pytest
else
[]
setup
(
name
=
"asyncua"
,
version
=
"1.1.5"
,
description
=
"Pure Python OPC-UA client and server library"
,
long_description
=
long_description
,
long_description_content_type
=
'text/markdown'
,
author
=
"Olivier Roulet-Dubonnet"
,
author_email
=
"olivier.roulet@gmail.com"
,
url
=
'http://freeopcua.github.io/'
,
packages
=
find_packages
(
exclude
=
[
"tests"
,
"stubs"
]),
provides
=
[
"asyncua"
],
license
=
"GNU Lesser General Public License v3 or later"
,
install_requires
=
[
"aiofiles"
,
"aiosqlite"
,
"python-dateutil"
,
"pytz"
,
"cryptography>42.0.0"
,
"sortedcontainers"
,
"importlib-metadata;python_version<'3.8'"
,
"pyOpenSSL>23.2.0"
,
"typing-extensions"
,
'wait_for2==0.3.2'
],
classifiers
=
[
"Programming Language :: Python :: 3.7"
,
"Programming Language :: Python :: 3.8"
,
"Programming Language :: Python :: 3.9"
,
"Programming Language :: Python :: 3.10"
,
"Programming Language :: Python :: 3.11"
,
"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 = asyncua.tools:uaread'
,
'uals = asyncua.tools:uals'
,
'uabrowse = asyncua.tools:uals'
,
'uawrite = asyncua.tools:uawrite'
,
'uasubscribe = asyncua.tools:uasubscribe'
,
'uahistoryread = asyncua.tools:uahistoryread'
,
'uaclient = asyncua.tools:uaclient'
,
'uaserver = asyncua.tools:uaserver'
,
'uadiscover = asyncua.tools:uadiscover'
,
'uacall = asyncua.tools:uacall'
,
'uageneratestructs = asyncua.tools:uageneratestructs'
,
]
},
setup_requires
=
[]
+
pytest_runner
,
tests_require
=
[
'pytest'
,
'pytest-mock'
,
'asynctest'
],
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment