From 4fc72e766ce7d7ab4a9cbb81f2a5463829e117d5 Mon Sep 17 00:00:00 2001 From: Tristan Slominski Date: Wed, 1 Jan 2025 07:49:56 -0600 Subject: [PATCH] chore: tbp copyright (#124) --- LICENSE | 19 ++++++++++++++++--- benchmarks/configs/__init__.py | 1 + benchmarks/configs/follow_ups/__init__.py | 1 + benchmarks/configs/monty_world_experiments.py | 1 + benchmarks/configs/pretraining_experiments.py | 1 + benchmarks/configs/ycb_experiments.py | 1 + benchmarks/make_detailed_follow_up_configs.py | 1 + benchmarks/run.py | 1 + benchmarks/run_parallel.py | 1 + docs/contributing/style-guide.md | 4 ++-- pyproject.toml | 6 +++--- src/tbp/monty/__init__.py | 1 + src/tbp/monty/frameworks/__init__.py | 1 + src/tbp/monty/frameworks/actions/__init__.py | 1 + .../frameworks/actions/action_samplers.py | 1 + src/tbp/monty/frameworks/actions/actions.py | 1 + src/tbp/monty/frameworks/actions/actuator.py | 1 + .../monty/frameworks/config_utils/__init__.py | 1 + .../frameworks/config_utils/cmd_parser.py | 1 + .../frameworks/config_utils/config_args.py | 1 + .../config_utils/make_dataset_configs.py | 1 + .../config_utils/policy_setup_utils.py | 1 + .../frameworks/environment_utils/__init__.py | 1 + .../environment_utils/graph_utils.py | 1 + .../environment_utils/habitat_utils.py | 1 + .../frameworks/environment_utils/server.py | 1 + .../environment_utils/transforms.py | 1 + .../monty/frameworks/environments/__init__.py | 1 + .../frameworks/environments/embodied_data.py | 1 + .../environments/embodied_environment.py | 1 + .../monty/frameworks/environments/habitat.py | 1 + .../frameworks/environments/real_robots.py | 1 + .../frameworks/environments/two_d_data.py | 1 + src/tbp/monty/frameworks/environments/ycb.py | 1 + .../monty/frameworks/experiments/__init__.py | 1 + .../data_collection_experiments.py | 1 + .../experiments/monty_experiment.py | 1 + .../object_recognition_experiments.py | 1 + .../experiments/pretraining_experiments.py | 1 + .../monty/frameworks/experiments/profile.py | 1 + src/tbp/monty/frameworks/loggers/__init__.py | 1 + .../monty/frameworks/loggers/exp_logger.py | 1 + .../loggers/graph_matching_loggers.py | 1 + .../frameworks/loggers/monty_handlers.py | 1 + .../frameworks/loggers/wandb_handlers.py | 1 + src/tbp/monty/frameworks/models/__init__.py | 1 + .../models/abstract_monty_classes.py | 1 + src/tbp/monty/frameworks/models/buffer.py | 1 + .../models/displacement_matching.py | 1 + .../frameworks/models/evidence_matching.py | 1 + .../models/evidence_sdr_matching.py | 1 + .../models/feature_location_matching.py | 1 + .../models/goal_state_generation.py | 1 + .../monty/frameworks/models/graph_matching.py | 1 + src/tbp/monty/frameworks/models/monty_base.py | 1 + .../monty/frameworks/models/motor_policies.py | 1 + .../monty/frameworks/models/object_model.py | 1 + .../monty/frameworks/models/sensor_modules.py | 1 + src/tbp/monty/frameworks/models/states.py | 1 + src/tbp/monty/frameworks/run.py | 1 + src/tbp/monty/frameworks/run_env.py | 1 + src/tbp/monty/frameworks/run_parallel.py | 1 + src/tbp/monty/frameworks/utils/__init__.py | 1 + .../frameworks/utils/communication_utils.py | 1 + .../monty/frameworks/utils/dataclass_utils.py | 1 + .../frameworks/utils/follow_up_configs.py | 1 + .../frameworks/utils/graph_matching_utils.py | 1 + .../monty/frameworks/utils/logging_utils.py | 1 + .../frameworks/utils/object_model_utils.py | 1 + src/tbp/monty/frameworks/utils/plot_utils.py | 1 + .../monty/frameworks/utils/profile_utils.py | 1 + .../frameworks/utils/sensor_processing.py | 1 + .../frameworks/utils/spatial_arithmetics.py | 1 + .../monty/frameworks/utils/transform_utils.py | 1 + src/tbp/monty/simulators/__init__.py | 1 + src/tbp/monty/simulators/habitat/__init__.py | 1 + src/tbp/monty/simulators/habitat/actions.py | 1 + src/tbp/monty/simulators/habitat/actuator.py | 1 + src/tbp/monty/simulators/habitat/agents.py | 1 + src/tbp/monty/simulators/habitat/sensors.py | 1 + src/tbp/monty/simulators/habitat/simulator.py | 1 + .../monty/simulators/resources/__init__.py | 1 + .../simulators/resources/tacto/__init__.py | 1 + src/tbp/monty/simulators/tacto/__init__.py | 1 + src/tbp/monty/simulators/tacto/agents.py | 1 + src/tbp/monty/simulators/tacto/config.py | 1 + src/tbp/monty/simulators/tacto/sensors.py | 1 + tests/__init__.py | 1 + tests/unit/__init__.py | 1 + tests/unit/base_config_test.py | 1 + tests/unit/custom_actions_test.py | 1 + tests/unit/dataclass_utils_test.py | 1 + tests/unit/dependencies_test.py | 1 + tests/unit/embodied_data_test.py | 1 + tests/unit/evidence_lm_test.py | 1 + tests/unit/evidence_sdr_lm_test.py | 1 + tests/unit/frameworks/__init__.py | 1 + tests/unit/frameworks/actions/__init__.py | 1 + .../actions/action_samplers_test.py | 1 + tests/unit/frameworks/actions/actions_test.py | 1 + .../unit/frameworks/actions/fakes/__init__.py | 1 + tests/unit/frameworks/actions/fakes/action.py | 1 + .../actions/fakes/action_sampler.py | 1 + .../unit/frameworks/actions/fakes/actuator.py | 1 + .../frameworks/actions/fakes/actuator_test.py | 1 + .../frameworks/actions/habitat/__init__.py | 1 + .../actions/habitat/actuator_test.py | 1 + tests/unit/frameworks/utils/__init__.py | 1 + .../unit/frameworks/utils/plot_utils_test.py | 1 + tests/unit/graph_building_test.py | 1 + tests/unit/graph_learning_test.py | 1 + tests/unit/habitat_data_test.py | 1 + tests/unit/habitat_sim_test.py | 1 + tests/unit/habitat_transform_test.py | 1 + tests/unit/object_model_test.py | 1 + tests/unit/policy_test.py | 1 + tests/unit/resources/__init__.py | 1 + tests/unit/resources/unit_test_utils.py | 1 + tests/unit/run_parallel_test.py | 1 + tests/unit/run_test.py | 1 + tests/unit/sensor_module_test.py | 1 + tests/unit/tacto_test.py | 1 + tests/unit/transforms_test.py | 1 + tools/__init__.py | 1 + tools/generate_api_docs/source/conf.py | 1 + tools/github_readme_sync/__init__.py | 1 + tools/github_readme_sync/cli.py | 1 + tools/github_readme_sync/colors.py | 1 + tools/github_readme_sync/excluded_items.py | 1 + tools/github_readme_sync/export.py | 1 + tools/github_readme_sync/file.py | 1 + tools/github_readme_sync/hierarchy.py | 1 + tools/github_readme_sync/md.py | 1 + tools/github_readme_sync/readme.py | 1 + tools/github_readme_sync/req.py | 1 + tools/github_readme_sync/tests/__init__.py | 1 + tools/github_readme_sync/tests/cli_test.py | 1 + tools/github_readme_sync/tests/colors_test.py | 1 + tools/github_readme_sync/tests/export_test.py | 1 + tools/github_readme_sync/tests/file_test.py | 1 + .../tests/hierarchy_test.py | 1 + tools/github_readme_sync/tests/md_test.py | 1 + tools/github_readme_sync/tests/readme_test.py | 1 + tools/github_readme_sync/tests/req_test.py | 1 + tools/github_readme_sync/tests/upload_test.py | 1 + tools/github_readme_sync/upload.py | 1 + tools/print_version/__init__.py | 1 + tools/print_version/cli.py | 1 + tools/print_version/tests/__init__.py | 1 + tools/print_version/tests/cli_test.py | 1 + 150 files changed, 168 insertions(+), 8 deletions(-) diff --git a/LICENSE b/LICENSE index 2d0f88ec..201f9563 100644 --- a/LICENSE +++ b/LICENSE @@ -1,7 +1,20 @@ +Copyright 2025 Thousand Brains Project Copyright 2021-2024 Numenta Inc. -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: +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 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. +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. diff --git a/benchmarks/configs/__init__.py b/benchmarks/configs/__init__.py index e21b5cc3..322edf98 100644 --- a/benchmarks/configs/__init__.py +++ b/benchmarks/configs/__init__.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/benchmarks/configs/follow_ups/__init__.py b/benchmarks/configs/follow_ups/__init__.py index 0b353cd9..3fe69d12 100644 --- a/benchmarks/configs/follow_ups/__init__.py +++ b/benchmarks/configs/follow_ups/__init__.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/benchmarks/configs/monty_world_experiments.py b/benchmarks/configs/monty_world_experiments.py index 57b6dc15..bdf9a6b4 100644 --- a/benchmarks/configs/monty_world_experiments.py +++ b/benchmarks/configs/monty_world_experiments.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2023-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/benchmarks/configs/pretraining_experiments.py b/benchmarks/configs/pretraining_experiments.py index a6e47de5..3f066cbe 100644 --- a/benchmarks/configs/pretraining_experiments.py +++ b/benchmarks/configs/pretraining_experiments.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/benchmarks/configs/ycb_experiments.py b/benchmarks/configs/ycb_experiments.py index f37f7293..aa19f08d 100644 --- a/benchmarks/configs/ycb_experiments.py +++ b/benchmarks/configs/ycb_experiments.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/benchmarks/make_detailed_follow_up_configs.py b/benchmarks/make_detailed_follow_up_configs.py index df30f4bb..8eb1948a 100644 --- a/benchmarks/make_detailed_follow_up_configs.py +++ b/benchmarks/make_detailed_follow_up_configs.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/benchmarks/run.py b/benchmarks/run.py index 2e0ebcc2..f5b0ab52 100644 --- a/benchmarks/run.py +++ b/benchmarks/run.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/benchmarks/run_parallel.py b/benchmarks/run_parallel.py index c797c12f..93c80f0e 100644 --- a/benchmarks/run_parallel.py +++ b/benchmarks/run_parallel.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/docs/contributing/style-guide.md b/docs/contributing/style-guide.md index c09fc367..106df9f8 100644 --- a/docs/contributing/style-guide.md +++ b/docs/contributing/style-guide.md @@ -36,7 +36,7 @@ You can read more about our views on deep learning in Monty in our [FAQ](../how- All source code files must have a copyright and license header. The header must be placed at the top of the file, on the first line, before any other code. For example, in Python: ```python -# Copyright Numenta Inc. +# Copyright Thousand Brains Project # # Copyright may exist in Contributors' modifications # and/or contributions to the work. @@ -46,7 +46,7 @@ All source code files must have a copyright and license header. The header must # https://opensource.org/licenses/MIT. ``` -The `` is the year of the file's creation, and an optional sequence or range of years if the file has been modified over time. For example, if a file was created in 2024 and not modified again, the first line of the header should be `# Copyright 2024 Numenta Inc.`. If the file has been modified in consecutive years between 2022 and 2024, the header should be `# Copyright 2022-2024 Numenta Inc.`. If the file has been modified in multiple non-consecutive years in 2022, then in 2024 and 2025, the header should be `# Copyright 2022,2024-2025 Numenta Inc.`. +The `` is the year of the file's creation, and an optional sequence or range of years if the file has been modified over time. For example, if a file was created in 2024 and not modified again, the first line of the header should be `# Copyright 2024 Thousand Brains Project`. If the file has been modified in consecutive years between 2022 and 2024, the header should be `# Copyright 2022-2024 Thousand Brains Project`. If the file has been modified in multiple non-consecutive years in 2022, then in 2024 and 2025, the header should be `# Copyright 2022,2024-2025 Thousand Brains Project`. In other words, if you are creating a new file, add the copyright and license header with the current year. If you are modifying an existing file and the header does not include the current year, then add the current year to the header. You should never need to modify anything aside from the year in the very first line of the header. diff --git a/pyproject.toml b/pyproject.toml index c9af6135..bd68be42 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = 'setuptools.build_meta' [project] authors = [ - { name = 'Numenta' } + { name = 'Thousand Brains Project' } ] classifiers = [ 'Development Status :: 3 - Alpha', # Update to Beta when we start using semver @@ -29,7 +29,7 @@ dependencies = [ 'tqdm', 'wandb', ] -description = 'Numenta Monty' +description = 'Thousand Brains Project Monty' dynamic = ['version'] license = { file = 'LICENSE' } name = 'tbp.monty' @@ -338,7 +338,7 @@ ignore = [ ] [tool.ruff.lint.flake8-copyright] -author = "Numenta" +author = "Thousand Brains Project" [tool.ruff.lint.mccabe] max-complexity = 18 diff --git a/src/tbp/monty/__init__.py b/src/tbp/monty/__init__.py index ac148fb4..f5e41aa0 100644 --- a/src/tbp/monty/__init__.py +++ b/src/tbp/monty/__init__.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2021-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/frameworks/__init__.py b/src/tbp/monty/frameworks/__init__.py index 504f6881..66ccecfc 100644 --- a/src/tbp/monty/frameworks/__init__.py +++ b/src/tbp/monty/frameworks/__init__.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/frameworks/actions/__init__.py b/src/tbp/monty/frameworks/actions/__init__.py index 933a84f3..cf47eb09 100644 --- a/src/tbp/monty/frameworks/actions/__init__.py +++ b/src/tbp/monty/frameworks/actions/__init__.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/frameworks/actions/action_samplers.py b/src/tbp/monty/frameworks/actions/action_samplers.py index 403f571c..bc353489 100644 --- a/src/tbp/monty/frameworks/actions/action_samplers.py +++ b/src/tbp/monty/frameworks/actions/action_samplers.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/frameworks/actions/actions.py b/src/tbp/monty/frameworks/actions/actions.py index 51ac7199..6d0db38e 100644 --- a/src/tbp/monty/frameworks/actions/actions.py +++ b/src/tbp/monty/frameworks/actions/actions.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/frameworks/actions/actuator.py b/src/tbp/monty/frameworks/actions/actuator.py index 598a08e1..650abf7a 100644 --- a/src/tbp/monty/frameworks/actions/actuator.py +++ b/src/tbp/monty/frameworks/actions/actuator.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/frameworks/config_utils/__init__.py b/src/tbp/monty/frameworks/config_utils/__init__.py index 504f6881..66ccecfc 100644 --- a/src/tbp/monty/frameworks/config_utils/__init__.py +++ b/src/tbp/monty/frameworks/config_utils/__init__.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/frameworks/config_utils/cmd_parser.py b/src/tbp/monty/frameworks/config_utils/cmd_parser.py index cc3b97b3..38922d5f 100644 --- a/src/tbp/monty/frameworks/config_utils/cmd_parser.py +++ b/src/tbp/monty/frameworks/config_utils/cmd_parser.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/frameworks/config_utils/config_args.py b/src/tbp/monty/frameworks/config_utils/config_args.py index 63c49c1a..4bfb0ecc 100644 --- a/src/tbp/monty/frameworks/config_utils/config_args.py +++ b/src/tbp/monty/frameworks/config_utils/config_args.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/frameworks/config_utils/make_dataset_configs.py b/src/tbp/monty/frameworks/config_utils/make_dataset_configs.py index 43f1eae9..ec69c3d1 100644 --- a/src/tbp/monty/frameworks/config_utils/make_dataset_configs.py +++ b/src/tbp/monty/frameworks/config_utils/make_dataset_configs.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/frameworks/config_utils/policy_setup_utils.py b/src/tbp/monty/frameworks/config_utils/policy_setup_utils.py index 8bd0e94d..f6640ae5 100644 --- a/src/tbp/monty/frameworks/config_utils/policy_setup_utils.py +++ b/src/tbp/monty/frameworks/config_utils/policy_setup_utils.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/frameworks/environment_utils/__init__.py b/src/tbp/monty/frameworks/environment_utils/__init__.py index 7c6151fb..f0eca0c8 100644 --- a/src/tbp/monty/frameworks/environment_utils/__init__.py +++ b/src/tbp/monty/frameworks/environment_utils/__init__.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2021-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/frameworks/environment_utils/graph_utils.py b/src/tbp/monty/frameworks/environment_utils/graph_utils.py index b9ef3df0..3f221389 100644 --- a/src/tbp/monty/frameworks/environment_utils/graph_utils.py +++ b/src/tbp/monty/frameworks/environment_utils/graph_utils.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/frameworks/environment_utils/habitat_utils.py b/src/tbp/monty/frameworks/environment_utils/habitat_utils.py index f0e811d2..f7391c1d 100644 --- a/src/tbp/monty/frameworks/environment_utils/habitat_utils.py +++ b/src/tbp/monty/frameworks/environment_utils/habitat_utils.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2023-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/frameworks/environment_utils/server.py b/src/tbp/monty/frameworks/environment_utils/server.py index 6bde0117..9eaf089a 100644 --- a/src/tbp/monty/frameworks/environment_utils/server.py +++ b/src/tbp/monty/frameworks/environment_utils/server.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2023-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/frameworks/environment_utils/transforms.py b/src/tbp/monty/frameworks/environment_utils/transforms.py index 49fbfc23..63a0a0ac 100644 --- a/src/tbp/monty/frameworks/environment_utils/transforms.py +++ b/src/tbp/monty/frameworks/environment_utils/transforms.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2021-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/frameworks/environments/__init__.py b/src/tbp/monty/frameworks/environments/__init__.py index 504f6881..66ccecfc 100644 --- a/src/tbp/monty/frameworks/environments/__init__.py +++ b/src/tbp/monty/frameworks/environments/__init__.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/frameworks/environments/embodied_data.py b/src/tbp/monty/frameworks/environments/embodied_data.py index f38f7b9d..a45fde66 100644 --- a/src/tbp/monty/frameworks/environments/embodied_data.py +++ b/src/tbp/monty/frameworks/environments/embodied_data.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/frameworks/environments/embodied_environment.py b/src/tbp/monty/frameworks/environments/embodied_environment.py index 2eec0295..083b9e7e 100644 --- a/src/tbp/monty/frameworks/environments/embodied_environment.py +++ b/src/tbp/monty/frameworks/environments/embodied_environment.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/frameworks/environments/habitat.py b/src/tbp/monty/frameworks/environments/habitat.py index 291690e2..94749a3a 100644 --- a/src/tbp/monty/frameworks/environments/habitat.py +++ b/src/tbp/monty/frameworks/environments/habitat.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/frameworks/environments/real_robots.py b/src/tbp/monty/frameworks/environments/real_robots.py index 825e25ca..65601abd 100644 --- a/src/tbp/monty/frameworks/environments/real_robots.py +++ b/src/tbp/monty/frameworks/environments/real_robots.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/frameworks/environments/two_d_data.py b/src/tbp/monty/frameworks/environments/two_d_data.py index d23713fe..e3e45431 100644 --- a/src/tbp/monty/frameworks/environments/two_d_data.py +++ b/src/tbp/monty/frameworks/environments/two_d_data.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/frameworks/environments/ycb.py b/src/tbp/monty/frameworks/environments/ycb.py index 1075f637..56bcb197 100644 --- a/src/tbp/monty/frameworks/environments/ycb.py +++ b/src/tbp/monty/frameworks/environments/ycb.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/frameworks/experiments/__init__.py b/src/tbp/monty/frameworks/experiments/__init__.py index aed87f19..9bdb8e09 100644 --- a/src/tbp/monty/frameworks/experiments/__init__.py +++ b/src/tbp/monty/frameworks/experiments/__init__.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/frameworks/experiments/data_collection_experiments.py b/src/tbp/monty/frameworks/experiments/data_collection_experiments.py index b623c416..0f0ef3c1 100644 --- a/src/tbp/monty/frameworks/experiments/data_collection_experiments.py +++ b/src/tbp/monty/frameworks/experiments/data_collection_experiments.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/frameworks/experiments/monty_experiment.py b/src/tbp/monty/frameworks/experiments/monty_experiment.py index eb739ab1..2f2af606 100644 --- a/src/tbp/monty/frameworks/experiments/monty_experiment.py +++ b/src/tbp/monty/frameworks/experiments/monty_experiment.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2021-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/frameworks/experiments/object_recognition_experiments.py b/src/tbp/monty/frameworks/experiments/object_recognition_experiments.py index 12400ac8..7599a5e4 100644 --- a/src/tbp/monty/frameworks/experiments/object_recognition_experiments.py +++ b/src/tbp/monty/frameworks/experiments/object_recognition_experiments.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2023-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/frameworks/experiments/pretraining_experiments.py b/src/tbp/monty/frameworks/experiments/pretraining_experiments.py index dfd14532..17581b2e 100644 --- a/src/tbp/monty/frameworks/experiments/pretraining_experiments.py +++ b/src/tbp/monty/frameworks/experiments/pretraining_experiments.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2023-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/frameworks/experiments/profile.py b/src/tbp/monty/frameworks/experiments/profile.py index b49b4616..3fa359a5 100644 --- a/src/tbp/monty/frameworks/experiments/profile.py +++ b/src/tbp/monty/frameworks/experiments/profile.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/frameworks/loggers/__init__.py b/src/tbp/monty/frameworks/loggers/__init__.py index 504f6881..66ccecfc 100644 --- a/src/tbp/monty/frameworks/loggers/__init__.py +++ b/src/tbp/monty/frameworks/loggers/__init__.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/frameworks/loggers/exp_logger.py b/src/tbp/monty/frameworks/loggers/exp_logger.py index 1d28dd3d..0330f7f9 100644 --- a/src/tbp/monty/frameworks/loggers/exp_logger.py +++ b/src/tbp/monty/frameworks/loggers/exp_logger.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/frameworks/loggers/graph_matching_loggers.py b/src/tbp/monty/frameworks/loggers/graph_matching_loggers.py index ea15050f..a26e303b 100644 --- a/src/tbp/monty/frameworks/loggers/graph_matching_loggers.py +++ b/src/tbp/monty/frameworks/loggers/graph_matching_loggers.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/frameworks/loggers/monty_handlers.py b/src/tbp/monty/frameworks/loggers/monty_handlers.py index f751bd7e..ff9fadb5 100644 --- a/src/tbp/monty/frameworks/loggers/monty_handlers.py +++ b/src/tbp/monty/frameworks/loggers/monty_handlers.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/frameworks/loggers/wandb_handlers.py b/src/tbp/monty/frameworks/loggers/wandb_handlers.py index 2d89b85e..93faf1c5 100644 --- a/src/tbp/monty/frameworks/loggers/wandb_handlers.py +++ b/src/tbp/monty/frameworks/loggers/wandb_handlers.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/frameworks/models/__init__.py b/src/tbp/monty/frameworks/models/__init__.py index 7c6151fb..f0eca0c8 100644 --- a/src/tbp/monty/frameworks/models/__init__.py +++ b/src/tbp/monty/frameworks/models/__init__.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2021-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/frameworks/models/abstract_monty_classes.py b/src/tbp/monty/frameworks/models/abstract_monty_classes.py index e6a46794..3c177c62 100644 --- a/src/tbp/monty/frameworks/models/abstract_monty_classes.py +++ b/src/tbp/monty/frameworks/models/abstract_monty_classes.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2021-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/frameworks/models/buffer.py b/src/tbp/monty/frameworks/models/buffer.py index 0a5feb81..78eea9c8 100644 --- a/src/tbp/monty/frameworks/models/buffer.py +++ b/src/tbp/monty/frameworks/models/buffer.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/frameworks/models/displacement_matching.py b/src/tbp/monty/frameworks/models/displacement_matching.py index a876318c..eab1b06d 100644 --- a/src/tbp/monty/frameworks/models/displacement_matching.py +++ b/src/tbp/monty/frameworks/models/displacement_matching.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/frameworks/models/evidence_matching.py b/src/tbp/monty/frameworks/models/evidence_matching.py index 29b60091..b4ca3a5d 100644 --- a/src/tbp/monty/frameworks/models/evidence_matching.py +++ b/src/tbp/monty/frameworks/models/evidence_matching.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/frameworks/models/evidence_sdr_matching.py b/src/tbp/monty/frameworks/models/evidence_sdr_matching.py index c4e83c44..6ed9f731 100644 --- a/src/tbp/monty/frameworks/models/evidence_sdr_matching.py +++ b/src/tbp/monty/frameworks/models/evidence_sdr_matching.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/frameworks/models/feature_location_matching.py b/src/tbp/monty/frameworks/models/feature_location_matching.py index 4bc96e8f..55e2dec0 100644 --- a/src/tbp/monty/frameworks/models/feature_location_matching.py +++ b/src/tbp/monty/frameworks/models/feature_location_matching.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/frameworks/models/goal_state_generation.py b/src/tbp/monty/frameworks/models/goal_state_generation.py index 9258aa58..196b81d8 100644 --- a/src/tbp/monty/frameworks/models/goal_state_generation.py +++ b/src/tbp/monty/frameworks/models/goal_state_generation.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2023-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/frameworks/models/graph_matching.py b/src/tbp/monty/frameworks/models/graph_matching.py index 8f998d53..7d3fa623 100644 --- a/src/tbp/monty/frameworks/models/graph_matching.py +++ b/src/tbp/monty/frameworks/models/graph_matching.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/frameworks/models/monty_base.py b/src/tbp/monty/frameworks/models/monty_base.py index a2260c16..35256d50 100644 --- a/src/tbp/monty/frameworks/models/monty_base.py +++ b/src/tbp/monty/frameworks/models/monty_base.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/frameworks/models/motor_policies.py b/src/tbp/monty/frameworks/models/motor_policies.py index 664b2019..297ef5f4 100644 --- a/src/tbp/monty/frameworks/models/motor_policies.py +++ b/src/tbp/monty/frameworks/models/motor_policies.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2021-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/frameworks/models/object_model.py b/src/tbp/monty/frameworks/models/object_model.py index 58fc2ac7..c70f172d 100644 --- a/src/tbp/monty/frameworks/models/object_model.py +++ b/src/tbp/monty/frameworks/models/object_model.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2023-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/frameworks/models/sensor_modules.py b/src/tbp/monty/frameworks/models/sensor_modules.py index 7a2adbd2..31c39f91 100644 --- a/src/tbp/monty/frameworks/models/sensor_modules.py +++ b/src/tbp/monty/frameworks/models/sensor_modules.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/frameworks/models/states.py b/src/tbp/monty/frameworks/models/states.py index ea553b1b..0b588959 100644 --- a/src/tbp/monty/frameworks/models/states.py +++ b/src/tbp/monty/frameworks/models/states.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2023-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/frameworks/run.py b/src/tbp/monty/frameworks/run.py index c605ff8c..2e34c710 100644 --- a/src/tbp/monty/frameworks/run.py +++ b/src/tbp/monty/frameworks/run.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/frameworks/run_env.py b/src/tbp/monty/frameworks/run_env.py index 35b32fc2..d234ccf8 100644 --- a/src/tbp/monty/frameworks/run_env.py +++ b/src/tbp/monty/frameworks/run_env.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/frameworks/run_parallel.py b/src/tbp/monty/frameworks/run_parallel.py index 4e08b82a..4c49103a 100644 --- a/src/tbp/monty/frameworks/run_parallel.py +++ b/src/tbp/monty/frameworks/run_parallel.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/frameworks/utils/__init__.py b/src/tbp/monty/frameworks/utils/__init__.py index 504f6881..66ccecfc 100644 --- a/src/tbp/monty/frameworks/utils/__init__.py +++ b/src/tbp/monty/frameworks/utils/__init__.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/frameworks/utils/communication_utils.py b/src/tbp/monty/frameworks/utils/communication_utils.py index cffcc8fc..1f3c1c68 100644 --- a/src/tbp/monty/frameworks/utils/communication_utils.py +++ b/src/tbp/monty/frameworks/utils/communication_utils.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2023-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/frameworks/utils/dataclass_utils.py b/src/tbp/monty/frameworks/utils/dataclass_utils.py index 7bc5cf36..deabd0b3 100644 --- a/src/tbp/monty/frameworks/utils/dataclass_utils.py +++ b/src/tbp/monty/frameworks/utils/dataclass_utils.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/frameworks/utils/follow_up_configs.py b/src/tbp/monty/frameworks/utils/follow_up_configs.py index 515cb9b3..70047b05 100644 --- a/src/tbp/monty/frameworks/utils/follow_up_configs.py +++ b/src/tbp/monty/frameworks/utils/follow_up_configs.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/frameworks/utils/graph_matching_utils.py b/src/tbp/monty/frameworks/utils/graph_matching_utils.py index 920ea71c..bae32297 100644 --- a/src/tbp/monty/frameworks/utils/graph_matching_utils.py +++ b/src/tbp/monty/frameworks/utils/graph_matching_utils.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2023-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/frameworks/utils/logging_utils.py b/src/tbp/monty/frameworks/utils/logging_utils.py index 6421a616..cb1eb32b 100644 --- a/src/tbp/monty/frameworks/utils/logging_utils.py +++ b/src/tbp/monty/frameworks/utils/logging_utils.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2023-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/frameworks/utils/object_model_utils.py b/src/tbp/monty/frameworks/utils/object_model_utils.py index c1fd9018..aa998fc2 100644 --- a/src/tbp/monty/frameworks/utils/object_model_utils.py +++ b/src/tbp/monty/frameworks/utils/object_model_utils.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2023-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/frameworks/utils/plot_utils.py b/src/tbp/monty/frameworks/utils/plot_utils.py index 0d9a1ad6..5cb40087 100644 --- a/src/tbp/monty/frameworks/utils/plot_utils.py +++ b/src/tbp/monty/frameworks/utils/plot_utils.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/frameworks/utils/profile_utils.py b/src/tbp/monty/frameworks/utils/profile_utils.py index 96b39341..ccc49fa9 100644 --- a/src/tbp/monty/frameworks/utils/profile_utils.py +++ b/src/tbp/monty/frameworks/utils/profile_utils.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/frameworks/utils/sensor_processing.py b/src/tbp/monty/frameworks/utils/sensor_processing.py index be8ba8bd..bfbe92f0 100644 --- a/src/tbp/monty/frameworks/utils/sensor_processing.py +++ b/src/tbp/monty/frameworks/utils/sensor_processing.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2023-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/frameworks/utils/spatial_arithmetics.py b/src/tbp/monty/frameworks/utils/spatial_arithmetics.py index c535495d..5c85c62e 100644 --- a/src/tbp/monty/frameworks/utils/spatial_arithmetics.py +++ b/src/tbp/monty/frameworks/utils/spatial_arithmetics.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2023-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/frameworks/utils/transform_utils.py b/src/tbp/monty/frameworks/utils/transform_utils.py index d1c9b312..3bc52544 100644 --- a/src/tbp/monty/frameworks/utils/transform_utils.py +++ b/src/tbp/monty/frameworks/utils/transform_utils.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/simulators/__init__.py b/src/tbp/monty/simulators/__init__.py index 504f6881..66ccecfc 100644 --- a/src/tbp/monty/simulators/__init__.py +++ b/src/tbp/monty/simulators/__init__.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/simulators/habitat/__init__.py b/src/tbp/monty/simulators/habitat/__init__.py index 8305d536..2a14177a 100644 --- a/src/tbp/monty/simulators/habitat/__init__.py +++ b/src/tbp/monty/simulators/habitat/__init__.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/simulators/habitat/actions.py b/src/tbp/monty/simulators/habitat/actions.py index 8f7fc6a9..64659755 100644 --- a/src/tbp/monty/simulators/habitat/actions.py +++ b/src/tbp/monty/simulators/habitat/actions.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/simulators/habitat/actuator.py b/src/tbp/monty/simulators/habitat/actuator.py index d7880490..f5ebd639 100644 --- a/src/tbp/monty/simulators/habitat/actuator.py +++ b/src/tbp/monty/simulators/habitat/actuator.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/simulators/habitat/agents.py b/src/tbp/monty/simulators/habitat/agents.py index 65d44e5a..14f2bc28 100644 --- a/src/tbp/monty/simulators/habitat/agents.py +++ b/src/tbp/monty/simulators/habitat/agents.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/simulators/habitat/sensors.py b/src/tbp/monty/simulators/habitat/sensors.py index fef4214a..ba9d0870 100644 --- a/src/tbp/monty/simulators/habitat/sensors.py +++ b/src/tbp/monty/simulators/habitat/sensors.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/simulators/habitat/simulator.py b/src/tbp/monty/simulators/habitat/simulator.py index 43ddddb3..c7bc9c44 100644 --- a/src/tbp/monty/simulators/habitat/simulator.py +++ b/src/tbp/monty/simulators/habitat/simulator.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/simulators/resources/__init__.py b/src/tbp/monty/simulators/resources/__init__.py index 504f6881..66ccecfc 100644 --- a/src/tbp/monty/simulators/resources/__init__.py +++ b/src/tbp/monty/simulators/resources/__init__.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/simulators/resources/tacto/__init__.py b/src/tbp/monty/simulators/resources/tacto/__init__.py index 504f6881..66ccecfc 100644 --- a/src/tbp/monty/simulators/resources/tacto/__init__.py +++ b/src/tbp/monty/simulators/resources/tacto/__init__.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/simulators/tacto/__init__.py b/src/tbp/monty/simulators/tacto/__init__.py index a00c5cba..a200b1d6 100644 --- a/src/tbp/monty/simulators/tacto/__init__.py +++ b/src/tbp/monty/simulators/tacto/__init__.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/simulators/tacto/agents.py b/src/tbp/monty/simulators/tacto/agents.py index a9c365fd..6570fe24 100644 --- a/src/tbp/monty/simulators/tacto/agents.py +++ b/src/tbp/monty/simulators/tacto/agents.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/simulators/tacto/config.py b/src/tbp/monty/simulators/tacto/config.py index 28cca56a..a5573199 100644 --- a/src/tbp/monty/simulators/tacto/config.py +++ b/src/tbp/monty/simulators/tacto/config.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/src/tbp/monty/simulators/tacto/sensors.py b/src/tbp/monty/simulators/tacto/sensors.py index 148b750f..b863414f 100644 --- a/src/tbp/monty/simulators/tacto/sensors.py +++ b/src/tbp/monty/simulators/tacto/sensors.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/tests/__init__.py b/tests/__init__.py index 933a84f3..cf47eb09 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/tests/unit/__init__.py b/tests/unit/__init__.py index 2d4749ac..0cbb8385 100644 --- a/tests/unit/__init__.py +++ b/tests/unit/__init__.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/tests/unit/base_config_test.py b/tests/unit/base_config_test.py index 115e003e..efda3953 100644 --- a/tests/unit/base_config_test.py +++ b/tests/unit/base_config_test.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/tests/unit/custom_actions_test.py b/tests/unit/custom_actions_test.py index a878052e..4d80e991 100644 --- a/tests/unit/custom_actions_test.py +++ b/tests/unit/custom_actions_test.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/tests/unit/dataclass_utils_test.py b/tests/unit/dataclass_utils_test.py index c2265f6b..b8739ef4 100644 --- a/tests/unit/dataclass_utils_test.py +++ b/tests/unit/dataclass_utils_test.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/tests/unit/dependencies_test.py b/tests/unit/dependencies_test.py index 318181c3..924ad9cc 100644 --- a/tests/unit/dependencies_test.py +++ b/tests/unit/dependencies_test.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/tests/unit/embodied_data_test.py b/tests/unit/embodied_data_test.py index 9876233b..c8592680 100644 --- a/tests/unit/embodied_data_test.py +++ b/tests/unit/embodied_data_test.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/tests/unit/evidence_lm_test.py b/tests/unit/evidence_lm_test.py index e80d76d1..3878cebb 100644 --- a/tests/unit/evidence_lm_test.py +++ b/tests/unit/evidence_lm_test.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/tests/unit/evidence_sdr_lm_test.py b/tests/unit/evidence_sdr_lm_test.py index 87ffd206..b35a4fe5 100644 --- a/tests/unit/evidence_sdr_lm_test.py +++ b/tests/unit/evidence_sdr_lm_test.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/tests/unit/frameworks/__init__.py b/tests/unit/frameworks/__init__.py index 933a84f3..cf47eb09 100644 --- a/tests/unit/frameworks/__init__.py +++ b/tests/unit/frameworks/__init__.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/tests/unit/frameworks/actions/__init__.py b/tests/unit/frameworks/actions/__init__.py index 933a84f3..cf47eb09 100644 --- a/tests/unit/frameworks/actions/__init__.py +++ b/tests/unit/frameworks/actions/__init__.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/tests/unit/frameworks/actions/action_samplers_test.py b/tests/unit/frameworks/actions/action_samplers_test.py index 58fae597..8203e79f 100644 --- a/tests/unit/frameworks/actions/action_samplers_test.py +++ b/tests/unit/frameworks/actions/action_samplers_test.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/tests/unit/frameworks/actions/actions_test.py b/tests/unit/frameworks/actions/actions_test.py index 5c982dfc..183e1f99 100644 --- a/tests/unit/frameworks/actions/actions_test.py +++ b/tests/unit/frameworks/actions/actions_test.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/tests/unit/frameworks/actions/fakes/__init__.py b/tests/unit/frameworks/actions/fakes/__init__.py index 933a84f3..cf47eb09 100644 --- a/tests/unit/frameworks/actions/fakes/__init__.py +++ b/tests/unit/frameworks/actions/fakes/__init__.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/tests/unit/frameworks/actions/fakes/action.py b/tests/unit/frameworks/actions/fakes/action.py index 681831b9..01e81552 100644 --- a/tests/unit/frameworks/actions/fakes/action.py +++ b/tests/unit/frameworks/actions/fakes/action.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/tests/unit/frameworks/actions/fakes/action_sampler.py b/tests/unit/frameworks/actions/fakes/action_sampler.py index 16c66d2d..5aa47bca 100644 --- a/tests/unit/frameworks/actions/fakes/action_sampler.py +++ b/tests/unit/frameworks/actions/fakes/action_sampler.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/tests/unit/frameworks/actions/fakes/actuator.py b/tests/unit/frameworks/actions/fakes/actuator.py index 65a7fc08..19d2a404 100644 --- a/tests/unit/frameworks/actions/fakes/actuator.py +++ b/tests/unit/frameworks/actions/fakes/actuator.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/tests/unit/frameworks/actions/fakes/actuator_test.py b/tests/unit/frameworks/actions/fakes/actuator_test.py index 4cd1d32c..ca93d504 100644 --- a/tests/unit/frameworks/actions/fakes/actuator_test.py +++ b/tests/unit/frameworks/actions/fakes/actuator_test.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/tests/unit/frameworks/actions/habitat/__init__.py b/tests/unit/frameworks/actions/habitat/__init__.py index 933a84f3..cf47eb09 100644 --- a/tests/unit/frameworks/actions/habitat/__init__.py +++ b/tests/unit/frameworks/actions/habitat/__init__.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/tests/unit/frameworks/actions/habitat/actuator_test.py b/tests/unit/frameworks/actions/habitat/actuator_test.py index d1b0357c..24226a30 100644 --- a/tests/unit/frameworks/actions/habitat/actuator_test.py +++ b/tests/unit/frameworks/actions/habitat/actuator_test.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/tests/unit/frameworks/utils/__init__.py b/tests/unit/frameworks/utils/__init__.py index 933a84f3..cf47eb09 100644 --- a/tests/unit/frameworks/utils/__init__.py +++ b/tests/unit/frameworks/utils/__init__.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/tests/unit/frameworks/utils/plot_utils_test.py b/tests/unit/frameworks/utils/plot_utils_test.py index ff18c846..1b2e956e 100644 --- a/tests/unit/frameworks/utils/plot_utils_test.py +++ b/tests/unit/frameworks/utils/plot_utils_test.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/tests/unit/graph_building_test.py b/tests/unit/graph_building_test.py index a5c81050..b4aff003 100644 --- a/tests/unit/graph_building_test.py +++ b/tests/unit/graph_building_test.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/tests/unit/graph_learning_test.py b/tests/unit/graph_learning_test.py index 58811022..556935be 100644 --- a/tests/unit/graph_learning_test.py +++ b/tests/unit/graph_learning_test.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/tests/unit/habitat_data_test.py b/tests/unit/habitat_data_test.py index 85e5e276..f6d0feb0 100644 --- a/tests/unit/habitat_data_test.py +++ b/tests/unit/habitat_data_test.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/tests/unit/habitat_sim_test.py b/tests/unit/habitat_sim_test.py index e6c278f1..ede33e18 100644 --- a/tests/unit/habitat_sim_test.py +++ b/tests/unit/habitat_sim_test.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/tests/unit/habitat_transform_test.py b/tests/unit/habitat_transform_test.py index e135a682..d020ca58 100644 --- a/tests/unit/habitat_transform_test.py +++ b/tests/unit/habitat_transform_test.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/tests/unit/object_model_test.py b/tests/unit/object_model_test.py index e60411f6..a9b19126 100644 --- a/tests/unit/object_model_test.py +++ b/tests/unit/object_model_test.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2023-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/tests/unit/policy_test.py b/tests/unit/policy_test.py index 14a25888..24010b52 100644 --- a/tests/unit/policy_test.py +++ b/tests/unit/policy_test.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/tests/unit/resources/__init__.py b/tests/unit/resources/__init__.py index 933a84f3..cf47eb09 100644 --- a/tests/unit/resources/__init__.py +++ b/tests/unit/resources/__init__.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/tests/unit/resources/unit_test_utils.py b/tests/unit/resources/unit_test_utils.py index a9886ce0..4d2b31cf 100644 --- a/tests/unit/resources/unit_test_utils.py +++ b/tests/unit/resources/unit_test_utils.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/tests/unit/run_parallel_test.py b/tests/unit/run_parallel_test.py index 511fd33e..c257e99c 100644 --- a/tests/unit/run_parallel_test.py +++ b/tests/unit/run_parallel_test.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/tests/unit/run_test.py b/tests/unit/run_test.py index f9b70ff2..669b2b6e 100644 --- a/tests/unit/run_test.py +++ b/tests/unit/run_test.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/tests/unit/sensor_module_test.py b/tests/unit/sensor_module_test.py index 5b3e1042..fe8dfe26 100644 --- a/tests/unit/sensor_module_test.py +++ b/tests/unit/sensor_module_test.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/tests/unit/tacto_test.py b/tests/unit/tacto_test.py index 2f65d4b5..0a343cb3 100644 --- a/tests/unit/tacto_test.py +++ b/tests/unit/tacto_test.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/tests/unit/transforms_test.py b/tests/unit/transforms_test.py index 7969dada..217a0d54 100644 --- a/tests/unit/transforms_test.py +++ b/tests/unit/transforms_test.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/tools/__init__.py b/tools/__init__.py index 933a84f3..cf47eb09 100644 --- a/tools/__init__.py +++ b/tools/__init__.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/tools/generate_api_docs/source/conf.py b/tools/generate_api_docs/source/conf.py index 517a5141..7168e06f 100644 --- a/tools/generate_api_docs/source/conf.py +++ b/tools/generate_api_docs/source/conf.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2022-2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/tools/github_readme_sync/__init__.py b/tools/github_readme_sync/__init__.py index 933a84f3..cf47eb09 100644 --- a/tools/github_readme_sync/__init__.py +++ b/tools/github_readme_sync/__init__.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/tools/github_readme_sync/cli.py b/tools/github_readme_sync/cli.py index 70a76efe..cb4b3dd8 100644 --- a/tools/github_readme_sync/cli.py +++ b/tools/github_readme_sync/cli.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/tools/github_readme_sync/colors.py b/tools/github_readme_sync/colors.py index a639d311..05c949bc 100644 --- a/tools/github_readme_sync/colors.py +++ b/tools/github_readme_sync/colors.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/tools/github_readme_sync/excluded_items.py b/tools/github_readme_sync/excluded_items.py index 5cec3bbf..df58dcb9 100644 --- a/tools/github_readme_sync/excluded_items.py +++ b/tools/github_readme_sync/excluded_items.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/tools/github_readme_sync/export.py b/tools/github_readme_sync/export.py index 470292ac..a89b393a 100644 --- a/tools/github_readme_sync/export.py +++ b/tools/github_readme_sync/export.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/tools/github_readme_sync/file.py b/tools/github_readme_sync/file.py index a1dc9c1e..0324259e 100644 --- a/tools/github_readme_sync/file.py +++ b/tools/github_readme_sync/file.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/tools/github_readme_sync/hierarchy.py b/tools/github_readme_sync/hierarchy.py index f0d4606e..2f473db2 100644 --- a/tools/github_readme_sync/hierarchy.py +++ b/tools/github_readme_sync/hierarchy.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/tools/github_readme_sync/md.py b/tools/github_readme_sync/md.py index 24d89e9a..2d382118 100644 --- a/tools/github_readme_sync/md.py +++ b/tools/github_readme_sync/md.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/tools/github_readme_sync/readme.py b/tools/github_readme_sync/readme.py index cef6833d..e4b3049d 100644 --- a/tools/github_readme_sync/readme.py +++ b/tools/github_readme_sync/readme.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/tools/github_readme_sync/req.py b/tools/github_readme_sync/req.py index 9975d97f..eb36770c 100644 --- a/tools/github_readme_sync/req.py +++ b/tools/github_readme_sync/req.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/tools/github_readme_sync/tests/__init__.py b/tools/github_readme_sync/tests/__init__.py index 933a84f3..cf47eb09 100644 --- a/tools/github_readme_sync/tests/__init__.py +++ b/tools/github_readme_sync/tests/__init__.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/tools/github_readme_sync/tests/cli_test.py b/tools/github_readme_sync/tests/cli_test.py index ac73ab67..c3e6b3cc 100644 --- a/tools/github_readme_sync/tests/cli_test.py +++ b/tools/github_readme_sync/tests/cli_test.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/tools/github_readme_sync/tests/colors_test.py b/tools/github_readme_sync/tests/colors_test.py index 4431c290..864e46f7 100644 --- a/tools/github_readme_sync/tests/colors_test.py +++ b/tools/github_readme_sync/tests/colors_test.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/tools/github_readme_sync/tests/export_test.py b/tools/github_readme_sync/tests/export_test.py index 1fc06d50..348a5c7e 100644 --- a/tools/github_readme_sync/tests/export_test.py +++ b/tools/github_readme_sync/tests/export_test.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/tools/github_readme_sync/tests/file_test.py b/tools/github_readme_sync/tests/file_test.py index 948fbc37..edad79f9 100644 --- a/tools/github_readme_sync/tests/file_test.py +++ b/tools/github_readme_sync/tests/file_test.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/tools/github_readme_sync/tests/hierarchy_test.py b/tools/github_readme_sync/tests/hierarchy_test.py index 8d295da1..de632d32 100644 --- a/tools/github_readme_sync/tests/hierarchy_test.py +++ b/tools/github_readme_sync/tests/hierarchy_test.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/tools/github_readme_sync/tests/md_test.py b/tools/github_readme_sync/tests/md_test.py index 53193eff..37624bf1 100644 --- a/tools/github_readme_sync/tests/md_test.py +++ b/tools/github_readme_sync/tests/md_test.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/tools/github_readme_sync/tests/readme_test.py b/tools/github_readme_sync/tests/readme_test.py index 157a7da8..df705ee6 100644 --- a/tools/github_readme_sync/tests/readme_test.py +++ b/tools/github_readme_sync/tests/readme_test.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/tools/github_readme_sync/tests/req_test.py b/tools/github_readme_sync/tests/req_test.py index 1a7b991c..8f6cefa1 100644 --- a/tools/github_readme_sync/tests/req_test.py +++ b/tools/github_readme_sync/tests/req_test.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/tools/github_readme_sync/tests/upload_test.py b/tools/github_readme_sync/tests/upload_test.py index 30f7c365..bb6e9051 100644 --- a/tools/github_readme_sync/tests/upload_test.py +++ b/tools/github_readme_sync/tests/upload_test.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/tools/github_readme_sync/upload.py b/tools/github_readme_sync/upload.py index 85362410..3ea3ee34 100644 --- a/tools/github_readme_sync/upload.py +++ b/tools/github_readme_sync/upload.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/tools/print_version/__init__.py b/tools/print_version/__init__.py index 933a84f3..cf47eb09 100644 --- a/tools/print_version/__init__.py +++ b/tools/print_version/__init__.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/tools/print_version/cli.py b/tools/print_version/cli.py index 06dfe8e5..04464f15 100644 --- a/tools/print_version/cli.py +++ b/tools/print_version/cli.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/tools/print_version/tests/__init__.py b/tools/print_version/tests/__init__.py index 933a84f3..cf47eb09 100644 --- a/tools/print_version/tests/__init__.py +++ b/tools/print_version/tests/__init__.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2024 Numenta Inc. # # Copyright may exist in Contributors' modifications diff --git a/tools/print_version/tests/cli_test.py b/tools/print_version/tests/cli_test.py index 85f2b3ae..accc275e 100644 --- a/tools/print_version/tests/cli_test.py +++ b/tools/print_version/tests/cli_test.py @@ -1,3 +1,4 @@ +# Copyright 2025 Thousand Brains Project # Copyright 2024 Numenta Inc. # # Copyright may exist in Contributors' modifications