28 lines
1.1 KiB
Python
28 lines
1.1 KiB
Python
#! /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",
|
|
],
|
|
)
|