From a12f7b7def52c3f711aa9617ace48d673513ba82 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Sat, 25 Oct 2025 23:12:53 +0000 Subject: [PATCH] feat: Apply Prosperity Public License This commit applies the Prosperity Public License to the project. - Adds a `NOTICE` file with the required information. - Adds the license header to all Python source files. --- NOTICE | 6 ++++++ src/my_python_project/__init__.py | 9 +++++++++ tests/test_example.py | 11 +++++++++++ 3 files changed, 26 insertions(+) create mode 100644 NOTICE diff --git a/NOTICE b/NOTICE new file mode 100644 index 0000000..651a000 --- /dev/null +++ b/NOTICE @@ -0,0 +1,6 @@ +Copyright (c) 2025-2026 CoReason, Inc + +This software is licensed under the Prosperity Public License 3.0.0. +The issuer of the Prosperity Public License for this software is CoReason, Inc. + +For a commercial version of this software, please contact us at license@coreason.ai. diff --git a/src/my_python_project/__init__.py b/src/my_python_project/__init__.py index e69de29..699ee4b 100644 --- a/src/my_python_project/__init__.py +++ b/src/my_python_project/__init__.py @@ -0,0 +1,9 @@ +# Copyright (c) 2025-2026 CoReason, Inc. All Rights Reserved. +# +# This software is proprietary and dual-licensed. +# Licensed under the Prosperity Public License 3.0.0 (the "License"). +# A copy of the license is available at https://prosperitylicense.com/versions/3.0.0 +# For details, see the LICENSE file. +# +# Commercial use beyond a 30-day trial requires a separate license. +# Contact: gowtham.rao@coreason.ai diff --git a/tests/test_example.py b/tests/test_example.py index 3b79f3d..a84fb72 100644 --- a/tests/test_example.py +++ b/tests/test_example.py @@ -1,2 +1,13 @@ +# Copyright (c) 2025-2026 CoReason, Inc. All Rights Reserved. +# +# This software is proprietary and dual-licensed. +# Licensed under the Prosperity Public License 3.0.0 (the "License"). +# A copy of the license is available at https://prosperitylicense.com/versions/3.0.0 +# For details, see the LICENSE file. +# +# Commercial use beyond a 30-day trial requires a separate license. +# Contact: gowtham.rao@coreason.ai + + def test_always_passes(): assert True