From e8daf6b448bb559ae8a611cbb79cb0bf4ec79b7a Mon Sep 17 00:00:00 2001 From: Anthonios Partheniou Date: Tue, 26 Apr 2022 16:09:56 +0000 Subject: [PATCH 1/4] fix: include tests directory --- owlbot.py | 1 + 1 file changed, 1 insertion(+) diff --git a/owlbot.py b/owlbot.py index 07f6485..f28177a 100644 --- a/owlbot.py +++ b/owlbot.py @@ -63,6 +63,7 @@ s.move(templated_files / ".kokoro", excludes=["docs/**/*", "publish-docs.sh"]) s.move(templated_files / "setup.cfg") s.move(templated_files / "LICENSE") +s.move(templated_files / "MANIFEST.in") s.move(templated_files / ".github", excludes=["workflows"]) # Generate _pb2.py files and format them From bcde31e86395b59e4fcaae3528ac6dc55d388dba Mon Sep 17 00:00:00 2001 From: Owl Bot Date: Tue, 26 Apr 2022 16:11:59 +0000 Subject: [PATCH 2/4] =?UTF-8?q?=F0=9F=A6=89=20Updates=20from=20OwlBot=20po?= =?UTF-8?q?st-processor?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --- MANIFEST.in | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 0401118..e783f4c 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -14,7 +14,12 @@ # See the License for the specific language governing permissions and # limitations under the License. -include README.md LICENSE -recursive-include google *.json *.proto +# Generated by synthtool. DO NOT EDIT! +include README.rst LICENSE +recursive-include google *.json *.proto py.typed +recursive-include tests * global-exclude *.py[co] global-exclude __pycache__ + +# Exclude scripts for samples readmegen +prune scripts/readme-gen From 36a952f1c3beb2f5af02c07bb73022ee3f5e918b Mon Sep 17 00:00:00 2001 From: Anthonios Partheniou Date: Tue, 26 Apr 2022 16:17:27 +0000 Subject: [PATCH 3/4] rename README.md to README.rst --- README.md => README.rst | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename README.md => README.rst (100%) diff --git a/README.md b/README.rst similarity index 100% rename from README.md rename to README.rst From 7243a277bed14508cbe19e2b34c76dcdd9bf798f Mon Sep 17 00:00:00 2001 From: Anthonios Partheniou Date: Tue, 26 Apr 2022 22:35:19 +0000 Subject: [PATCH 4/4] update path to README in setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 6703d89..49fddc5 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ package_root = os.path.abspath(os.path.dirname(__file__)) -readme_filename = os.path.join(package_root, "README.md") +readme_filename = os.path.join(package_root, "README.rst") with io.open(readme_filename, encoding="utf-8") as readme_file: readme = readme_file.read()