From eba455c3fe14fd6828e3512c933bc34525974bb9 Mon Sep 17 00:00:00 2001 From: Adeel Asghar Date: Tue, 25 Mar 2025 14:34:23 +0100 Subject: [PATCH] Added `project_urls` to setup.py Clean README.md --- README.md | 2 +- setup.py | 9 ++++++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fe670ab8f..72a600637 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ online. ## Bug Reports - Submit bugs through the [OpenModelica GitHub issues](https://github.com/OpenModelica/OMPython/issues/new). - - [Pull requests](https://github.com/OpenModelica/OMPython/pulls) are welcome ❤️. + - [Pull requests](https://github.com/OpenModelica/OMPython/pulls) are welcome. ## Contact diff --git a/setup.py b/setup.py index 2ace37d0f..c5eb6ce69 100755 --- a/setup.py +++ b/setup.py @@ -20,6 +20,13 @@ 'psutil', 'pyparsing', 'pyzmq' - ], + ], python_requires='>=3.8', + project_urls={ + 'documentation': 'https://openmodelica.org/doc/OpenModelicaUsersGuide/latest/ompython.html', + 'source': 'https://github.com/OpenModelica/OMPython', + 'download': 'https://pypi.org/project/OMPython/#files', + 'tracker': 'https://github.com/OpenModelica/OMPython/issues', + 'release notes': 'https://github.com/OpenModelica/OMPython/releases', + }, )