mirror of
https://github.com/naruxde/revpimodio2.git
synced 2025-11-08 13:53:53 +01:00
All RevPis got .core.wd for Software-Watchdog with RevPiPyLoad All RevPis has .core.wd_toggle() function to toggle watchdog bit Cycletools has .core and .io attribute to be independent of rpi object Cycletools has .runtime to get the actual runtime of function
51 lines
1.8 KiB
Python
51 lines
1.8 KiB
Python
#! /usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
"""Setupscript fuer python3-revpimodio."""
|
|
__author__ = "Sven Sager"
|
|
__copyright__ = "Copyright (C) 2018 Sven Sager"
|
|
__license__ = "LGPLv3"
|
|
|
|
from distutils.core import setup
|
|
|
|
setup(
|
|
author="Sven Sager",
|
|
author_email="akira@narux.de",
|
|
url="https://revpimodio.org/",
|
|
download_url="https://revpimodio.org/quellen/",
|
|
maintainer="Sven Sager",
|
|
maintainer_email="akira@revpimodio.org",
|
|
|
|
license="LGPLv3",
|
|
name="revpimodio2",
|
|
version="2.4.5d",
|
|
|
|
packages=["revpimodio2"],
|
|
python_requires="~=3.2",
|
|
keywords="revolutionpi plc automation",
|
|
|
|
description="Python3 programming for RevolutionPi of Kunbus GmbH",
|
|
long_description=""
|
|
"Das Modul stellt alle Devices und IOs aus der piCtory Konfiguration \n"
|
|
"in Python3 zur Verfügung. Es ermöglicht den direkten Zugriff auf die \n"
|
|
"Werte über deren vergebenen Namen. Lese- und Schreibaktionen mit dem \n"
|
|
"Prozessabbild werden von dem Modul selbst verwaltet, ohne dass sich \n"
|
|
"der Programmierer um Offsets und Adressen kümmern muss. Für die \n"
|
|
"Gatewaymodule wie ModbusTCP oder Profinet sind eigene 'Inputs' und \n"
|
|
"'Outputs' über einen bestimmten Adressbereich definierbar. Auf \n"
|
|
"diese IOs kann mit Python3 über den Namen direkt auf die Werte \n"
|
|
"zugegriffen werden.",
|
|
|
|
classifiers=[
|
|
"Development Status :: 5 - Production/Stable",
|
|
"Environment :: Console",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: "
|
|
"GNU Lesser General Public License v3 (LGPLv3)",
|
|
"Operating System :: MacOS :: MacOS X",
|
|
"Operating System :: Microsoft :: Windows",
|
|
"Operating System :: POSIX",
|
|
"Programming Language :: Python :: 3",
|
|
"Topic :: Software Development :: Libraries :: Python Modules"
|
|
],
|
|
)
|