mirror of
https://github.com/saymrwulf/crisis.git
synced 2026-05-14 20:37:54 +00:00
Add MIT LICENSE; align pyproject.toml accordingly
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 <noreply@anthropic.com>
This commit is contained in:
parent
fb9bc9c726
commit
2d7466fe93
2 changed files with 34 additions and 2 deletions
28
LICENSE
Normal file
28
LICENSE
Normal file
|
|
@ -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/`).
|
||||
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Reference in a new issue