Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@

APPENDIX: How to apply the Apache License to your work.

Copyright [yyyy] [name of copyright owner]
Copyright 2026 Joseph Verdicchio

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
5 changes: 5 additions & 0 deletions NOTICE
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
EvidenceOS / DiscOS

Copyright 2026 Joseph Verdicchio

This project contains novel methods for digital evidence conservation and reality-verification kernels. Specific logic contained herein is subject to pending patent applications. Use of this software is governed by the Apache 2.0 License, which includes a reciprocal patent termination clause.
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ requires = ["setuptools>=70", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "evidenceos"
version = "0.2.0"
name = "EvidenceOS"
version = "0.5.0"
description = "EvidenceOS: reference kernel for SafeClaim / adaptive evaluation"
readme = "README.md"
requires-python = ">=3.11"
license = {text = "Apache-2.0"}
authors = [{name="EvidenceOS Contributors"}]
authors = [{name = "Joseph Verdicchio"}]
dependencies = [
"jsonschema>=4.22",
"cryptography>=42.0",
Expand Down
8 changes: 8 additions & 0 deletions src/evidenceos/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# Copyright 2026 Joseph Verdicchio
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0

"""EvidenceOS reference kernel."""

__all__ = ["__version__"]
Expand Down
8 changes: 8 additions & 0 deletions src/evidenceos/admissibility/reality_kernel.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# Copyright 2026 Joseph Verdicchio
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0

from __future__ import annotations

import json
Expand Down
8 changes: 8 additions & 0 deletions src/evidenceos/cli.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# Copyright 2026 Joseph Verdicchio
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0

from __future__ import annotations

import argparse
Expand Down
8 changes: 8 additions & 0 deletions src/evidenceos/ledger/ledger.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# Copyright 2026 Joseph Verdicchio
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0

from __future__ import annotations

from dataclasses import dataclass, field
Expand Down
8 changes: 8 additions & 0 deletions src/evidenceos/safety_case/verified.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# Copyright 2026 Joseph Verdicchio
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0

from __future__ import annotations

from dataclasses import dataclass
Expand Down