From 2d7466fe93ee0808082478e909cb74c6adf03946 Mon Sep 17 00:00:00 2001 From: saymrwulf Date: Thu, 14 May 2026 15:51:19 +0200 Subject: [PATCH] Add MIT LICENSE; align pyproject.toml accordingly MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The repo had no LICENSE file and pyproject.toml claimed CC-BY-4.0 — a license that isn't designed for code and conflicts with the project's actual intent of letting people fork, learn from, and redistribute the implementation. The paper itself remains CC-BY-4.0 as a separately licensed artifact; that fact is now stated in the LICENSE file and in the parent README. Co-Authored-By: Claude Opus 4.7 --- LICENSE | 28 ++++++++++++++++++++++++++++ pyproject.toml | 8 ++++++-- 2 files changed, 34 insertions(+), 2 deletions(-) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..626a1b9 --- /dev/null +++ b/LICENSE @@ -0,0 +1,28 @@ +MIT License + +Copyright (c) 2025-2026 saymrwulf + +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. + +--- + +Note: The accompanying paper `Crisis.mirco-richter-2019.pdf` by Mirco Richter +is a separately licensed artifact under CC-BY-4.0 and is not covered by this +license. The MIT license above applies only to the code in this repository +(`src/`, `tests/`, `CrisisViz/`). diff --git a/pyproject.toml b/pyproject.toml index 37fe60f..5141db4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,9 +4,13 @@ version = "0.1.0" description = "Crisis: Probabilistically Self Organizing Total Order in Unstructured P2P Networks" readme = "README.md" requires-python = ">=3.11" -license = "CC-BY-4.0" +license = "MIT" +license-files = ["LICENSE"] authors = [ - { name = "Mirco Richter (paper)", email = "mirco.richter@mailbox.org" }, + { name = "saymrwulf" }, +] +maintainers = [ + { name = "Mirco Richter (paper author)", email = "mirco.richter@mailbox.org" }, ] dependencies = [ "networkx>=3.0",