diff --git a/README.md b/README.md index 72a08d3..59649a7 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,11 @@ # RevPiModIO +### Documentation: + +For a complete reference of all classes, methods, and functions, please see the +official documentation: +[https://revpimodio2.readthedocs.io/](https://revpimodio2.readthedocs.io/) + ### Python3 programming for RevolutionPi of KUNBUS GmbH. The module provides all devices and IOs from the piCtory configuration in diff --git a/setup.py b/setup.py index 89291fe..b189bdb 100644 --- a/setup.py +++ b/setup.py @@ -16,11 +16,9 @@ with open("README.md") as fh: setup( name="revpimodio2", version=__version__, - packages=find_namespace_packages("src"), - package_dir={'': 'src'}, + package_dir={"": "src"}, include_package_data=True, - python_requires=">= 3.2", install_requires=[], extras_require={ @@ -30,10 +28,12 @@ setup( ], }, 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", @@ -47,12 +47,11 @@ setup( "Development Status :: 5 - Production/Stable", "Environment :: Console", "Intended Audience :: Developers", - "License :: OSI Approved :: " - "GNU Lesser General Public License v2 (LGPLv2)", + "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" + "Topic :: Software Development :: Libraries :: Python Modules", ], )