mirror of
https://github.com/naruxde/revpimodio2.git
synced 2025-11-08 22:03:53 +01:00
https://github.com/mindstorm38 approved license change https://github.com/nbuchwitz approved license change
51 lines
1.5 KiB
Python
51 lines
1.5 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
|
|
|
|
with open("README.md") as fh:
|
|
# Load long description from readme file
|
|
long_description = fh.read()
|
|
|
|
setup(
|
|
name="revpimodio2",
|
|
version="2.6.0rc4",
|
|
|
|
packages=find_namespace_packages("src"),
|
|
package_dir={'': 'src'},
|
|
include_package_data=True,
|
|
|
|
python_requires="~=3.2",
|
|
install_requires=[],
|
|
entry_points={},
|
|
|
|
platforms=["all"],
|
|
|
|
url="https://revpimodio.org/",
|
|
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"
|
|
],
|
|
)
|