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",