Fix copy-paste issues

Bug: b/287529705
Change-Id: Ic27ae09e2206eef75aae3aec30ee3775cb2ecec9
Reviewed-on: https://pigweed-review.googlesource.com/c/open-dice/+/152291
Pigweed-Auto-Submit: Rob Mohr <mohrr@google.com>
Reviewed-by: Darren Krahn <dkrahn@google.com>
Commit-Queue: Auto-Submit <auto-submit@pigweed.google.com.iam.gserviceaccount.com>
diff --git a/BUILD.gn b/BUILD.gn
index a1453f8..0d65eaa 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -564,7 +564,7 @@
 # Set this gn arg in a declare_args block in this file 'BUILD.gn' or in '.gn' to
 # use this venv.
 #
-#   pw_build_PYTHON_BUILD_VENV = "//:sample_project_build_venv"
+#   pw_build_PYTHON_BUILD_VENV = "//:open_dice_build_venv"
 #
 pw_python_venv("open_dice_build_venv") {
   path = "$root_build_dir/python-venv"
diff --git a/tools/BUILD.gn b/tools/BUILD.gn
index c3a1d8d..fdf4ba9 100644
--- a/tools/BUILD.gn
+++ b/tools/BUILD.gn
@@ -1,4 +1,4 @@
-# Copyright 2023 The Pigweed Authors
+# Copyright 2023 Google LLC
 #
 # 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
diff --git a/tools/open_dice_tools/__init__.py b/tools/open_dice_tools/__init__.py
index c3e1bdb..241f8ac 100644
--- a/tools/open_dice_tools/__init__.py
+++ b/tools/open_dice_tools/__init__.py
@@ -1,4 +1,4 @@
-# Copyright 2023 The Pigweed Authors
+# Copyright 2023 Google LLC
 #
 # 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
diff --git a/tools/open_dice_tools/presubmit.py b/tools/open_dice_tools/presubmit.py
index c3e1bdb..241f8ac 100644
--- a/tools/open_dice_tools/presubmit.py
+++ b/tools/open_dice_tools/presubmit.py
@@ -1,4 +1,4 @@
-# Copyright 2023 The Pigweed Authors
+# Copyright 2023 Google LLC
 #
 # 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
diff --git a/tools/pyproject.toml b/tools/pyproject.toml
index 78668a7..60f1f5f 100644
--- a/tools/pyproject.toml
+++ b/tools/pyproject.toml
@@ -1,4 +1,4 @@
-# Copyright 2023 The Pigweed Authors
+# Copyright 2023 Google LLC
 #
 # 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
diff --git a/tools/setup.cfg b/tools/setup.cfg
index 17c00a1..71345ad 100644
--- a/tools/setup.cfg
+++ b/tools/setup.cfg
@@ -1,4 +1,4 @@
-# Copyright 2023 The Pigweed Authors
+# Copyright 2023 Google LLC
 #
 # 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
@@ -12,11 +12,10 @@
 # License for the specific language governing permissions and limitations under
 # the License.
 [metadata]
-name = sample_project_tools
+name = open_dice_tools
 version = 0.0.1
-author = Pigweed Authors
-author_email = pigweed-developers@googlegroups.com
-description = Utilities for Sample Project development
+author = Google LLC
+description = Utilities for Open Dice development
 
 [options]
 packages = find:
@@ -25,8 +24,8 @@
 
 [options.entry_points]
 console_scripts =
-    find-files = sample_project_tools.find_files:main
+    find-files = open_dice_tools.find_files:main
 
 [options.package_data]
-sample_project_tools =
+open_dice_tools =
     py.typed
diff --git a/tools/setup.py b/tools/setup.py
index 7faefad..838717a 100644
--- a/tools/setup.py
+++ b/tools/setup.py
@@ -1,4 +1,4 @@
-# Copyright 2023 The Pigweed Authors
+# Copyright 2023 Google LLC
 #
 # 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
@@ -11,7 +11,7 @@
 # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 # License for the specific language governing permissions and limitations under
 # the License.
-"""Utilities for Sample Project development."""
+"""Utilities for Open Dice development."""
 
 import setuptools  # type: ignore