Initial commit
This commit is contained in:
27
setup.py
Normal file
27
setup.py
Normal 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",
|
||||
],
|
||||
)
|
||||
Reference in New Issue
Block a user