crisis/pyproject.toml
saymrwulf 2d7466fe93 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>
2026-05-14 15:51:19 +02:00

34 lines
721 B
TOML

[project]
name = "crisis"
version = "0.1.0"
description = "Crisis: Probabilistically Self Organizing Total Order in Unstructured P2P Networks"
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{ name = "saymrwulf" },
]
maintainers = [
{ name = "Mirco Richter (paper author)", email = "mirco.richter@mailbox.org" },
]
dependencies = [
"networkx>=3.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"rich>=13.0",
]
[project.scripts]
crisis-node = "crisis.node:main"
crisis-demo = "crisis.demo:main"
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
testpaths = ["tests"]