From 5daa9343f7166998a16f342ca99219c305f234a5 Mon Sep 17 00:00:00 2001 From: Oussama Jarrousse Date: Mon, 22 Apr 2024 13:05:57 +0200 Subject: [PATCH] Added LICENSE file and bumped the version to 0.2.11 after a patch was merged. Updated __init__.py to include some additional information about the package including __credits__ --- LICENSE | 20 ++++++++++++++++++++ pytest_minio_mock/__init__.py | 9 ++++++++- setup.py | 2 +- 3 files changed, 29 insertions(+), 2 deletions(-) diff --git a/LICENSE b/LICENSE index e69de29..e0a55a8 100644 --- a/LICENSE +++ b/LICENSE @@ -0,0 +1,20 @@ +Copyright (c) 2023-2024 Oussama Jarrousse + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +“Software”), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/pytest_minio_mock/__init__.py b/pytest_minio_mock/__init__.py index 70f4ad4..fd76f4d 100644 --- a/pytest_minio_mock/__init__.py +++ b/pytest_minio_mock/__init__.py @@ -15,5 +15,12 @@ """ -__version__ = "0.2.10" +__title__ = "pytest-minio-mock" +__description__ = "A pytest plugin for mocking Minio S3 interactions" +__version__ = "0.2.11" +__status__ = "Production" +__license__ = "MIT" __author__ = "Oussama Jarrousse" +__maintainer__ = "Oussama Jarrousse" +__email__ = "oussama@jarrousse.org" +__credits__ = ["Gustavo Satheler", "@cottephi"] \ No newline at end of file diff --git a/setup.py b/setup.py index 7b2d036..2f03011 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ long_description=open("README.md").read(), keywords="pytest minio mock", extras_require={"dev": ["pre-commit", "tox"]}, - version="0.2.10", + version="0.2.11", long_description_content_type="text/markdown", classifiers=[ "Framework :: Pytest",