Files
revpimodio2/setup.py
Sven Sager 5e0463b09b chore: Update setup.py and README with project URLs
Added `Documentation` and `Source` links to `setup.py` under
`project_urls`. Updated README with a link to the official
documentation.

Signed-off-by: Sven Sager <akira@narux.de>
2026-02-18 10:04:09 +01:00

58 lines
1.8 KiB
Python

#! /usr/bin/env python3
# -*- coding: utf-8 -*-
"""Setup-script for revpimodio2."""
__author__ = "Sven Sager"
__copyright__ = "Copyright (C) 2023 Sven Sager"
__license__ = "LGPLv2"
from setuptools import setup, find_namespace_packages
from src.revpimodio2.__about__ import __version__
with open("README.md") as fh:
# Load long description from readme file
long_description = fh.read()
setup(
name="revpimodio2",
version=__version__,
packages=find_namespace_packages("src"),
package_dir={"": "src"},
include_package_data=True,
python_requires=">= 3.2",
install_requires=[],
extras_require={
"docs": [
"sphinx",
"sphinx_rtd_theme",
],
},
entry_points={},
platforms=["all"],
url="https://revpimodio.org/",
project_urls={
"Documentation": "https://revpimodio2.readthedocs.io/",
"Source": "https://github.com/naruxde/revpimodio2",
},
license="LGPLv2",
author="Sven Sager",
author_email="akira@narux.de",
maintainer="Sven Sager",
maintainer_email="akira@revpimodio.org",
description="Python3 programming for RevolutionPi of KUNBUS GmbH",
long_description=long_description,
long_description_content_type="text/markdown",
keywords=["revpi", "revolution pi", "revpimodio", "plc", "automation"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: " "GNU Lesser General Public License v2 (LGPLv2)",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)