From 775269b073627e36df2b562f78caed57f8072b10 Mon Sep 17 00:00:00 2001 From: Twisha Bansal Date: Mon, 2 Dec 2024 14:56:27 +0530 Subject: [PATCH] chore: Initialise package --- src/llama_index_cloud_sql_pg/__init__.py | 17 +++++++++++++++++ src/llama_index_cloud_sql_pg/version.py | 15 +++++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 src/llama_index_cloud_sql_pg/__init__.py create mode 100644 src/llama_index_cloud_sql_pg/version.py diff --git a/src/llama_index_cloud_sql_pg/__init__.py b/src/llama_index_cloud_sql_pg/__init__.py new file mode 100644 index 0000000..2a37af3 --- /dev/null +++ b/src/llama_index_cloud_sql_pg/__init__.py @@ -0,0 +1,17 @@ +# Copyright 2024 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 the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +_all = [ + "__version__", +] \ No newline at end of file diff --git a/src/llama_index_cloud_sql_pg/version.py b/src/llama_index_cloud_sql_pg/version.py new file mode 100644 index 0000000..629a90b --- /dev/null +++ b/src/llama_index_cloud_sql_pg/version.py @@ -0,0 +1,15 @@ +# Copyright 2024 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 the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +__version__ = "0.1.0" \ No newline at end of file