Initial commit

This commit is contained in:
2026-01-14 21:33:17 +03:00
commit 40d80ef55e
17 changed files with 2573 additions and 0 deletions

27
setup.py Normal file
View File

@@ -0,0 +1,27 @@
#! /usr/bin/env python3
from setuptools import setup
setup(name="python-owen",
version="0.4.2",
description="OWEN controllers library",
url="https://github.com/RAA80/python-owen",
author="Alexey Ryadno",
author_email="aryadno@mail.ru",
license="MIT",
packages=["owen"],
install_requires=["pymodbus < 3", "pyserial >= 3.4"],
platforms=["Linux", "Windows"],
classifiers=["Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
)