airbyte-source-google-drive 0.4.2.dev202507111853__tar.gz → 0.4.3__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of airbyte-source-google-drive might be problematic. Click here for more details.

Files changed (13) hide show
  1. {airbyte_source_google_drive-0.4.2.dev202507111853 → airbyte_source_google_drive-0.4.3}/PKG-INFO +3 -3
  2. {airbyte_source_google_drive-0.4.2.dev202507111853 → airbyte_source_google_drive-0.4.3}/pyproject.toml +9 -15
  3. {airbyte_source_google_drive-0.4.2.dev202507111853 → airbyte_source_google_drive-0.4.3}/README.md +0 -0
  4. {airbyte_source_google_drive-0.4.2.dev202507111853 → airbyte_source_google_drive-0.4.3}/source_google_drive/__init__.py +0 -0
  5. {airbyte_source_google_drive-0.4.2.dev202507111853 → airbyte_source_google_drive-0.4.3}/source_google_drive/exceptions.py +0 -0
  6. {airbyte_source_google_drive-0.4.2.dev202507111853 → airbyte_source_google_drive-0.4.3}/source_google_drive/run.py +0 -0
  7. {airbyte_source_google_drive-0.4.2.dev202507111853 → airbyte_source_google_drive-0.4.3}/source_google_drive/schemas/file_permissions.json +0 -0
  8. {airbyte_source_google_drive-0.4.2.dev202507111853 → airbyte_source_google_drive-0.4.3}/source_google_drive/schemas/identities.json +0 -0
  9. {airbyte_source_google_drive-0.4.2.dev202507111853 → airbyte_source_google_drive-0.4.3}/source_google_drive/source.py +0 -0
  10. {airbyte_source_google_drive-0.4.2.dev202507111853 → airbyte_source_google_drive-0.4.3}/source_google_drive/spec.py +0 -0
  11. {airbyte_source_google_drive-0.4.2.dev202507111853 → airbyte_source_google_drive-0.4.3}/source_google_drive/stream_permissions_reader.py +0 -0
  12. {airbyte_source_google_drive-0.4.2.dev202507111853 → airbyte_source_google_drive-0.4.3}/source_google_drive/stream_reader.py +0 -0
  13. {airbyte_source_google_drive-0.4.2.dev202507111853 → airbyte_source_google_drive-0.4.3}/source_google_drive/utils.py +0 -0
@@ -1,7 +1,8 @@
1
- Metadata-Version: 2.3
1
+ Metadata-Version: 2.1
2
2
  Name: airbyte-source-google-drive
3
- Version: 0.4.2.dev202507111853
3
+ Version: 0.4.3
4
4
  Summary: Source implementation for Google Drive.
5
+ Home-page: https://airbyte.com
5
6
  License: ELv2
6
7
  Author: Airbyte
7
8
  Author-email: contact@airbyte.io
@@ -16,7 +17,6 @@ Requires-Dist: google-api-python-client-stubs (==1.18.0)
16
17
  Requires-Dist: google-auth-httplib2 (==0.1.1)
17
18
  Requires-Dist: google-auth-oauthlib (==1.1.0)
18
19
  Project-URL: Documentation, https://docs.airbyte.com/integrations/sources/google-drive
19
- Project-URL: Homepage, https://airbyte.com
20
20
  Project-URL: Repository, https://github.com/airbytehq/airbyte
21
21
  Description-Content-Type: text/markdown
22
22
 
@@ -1,24 +1,19 @@
1
1
  [build-system]
2
- requires = [
3
- "poetry-core>=1.0.0",
4
- ]
2
+ requires = [ "poetry-core>=1.0.0",]
5
3
  build-backend = "poetry.core.masonry.api"
6
4
 
7
5
  [tool.poetry]
8
- version = "0.4.2.dev202507111853"
6
+ version = "0.4.3"
9
7
  name = "airbyte-source-google-drive"
10
8
  description = "Source implementation for Google Drive."
11
- authors = [
12
- "Airbyte <contact@airbyte.io>",
13
- ]
9
+ authors = [ "Airbyte <contact@airbyte.io>",]
14
10
  license = "ELv2"
15
11
  readme = "README.md"
16
12
  documentation = "https://docs.airbyte.com/integrations/sources/google-drive"
17
13
  homepage = "https://airbyte.com"
18
14
  repository = "https://github.com/airbytehq/airbyte"
19
- packages = [
20
- { include = "source_google_drive" },
21
- ]
15
+ [[tool.poetry.packages]]
16
+ include = "source_google_drive"
22
17
 
23
18
  [tool.poetry.dependencies]
24
19
  python = "^3.10,<3.12"
@@ -26,12 +21,8 @@ google-api-python-client = "==2.104.0"
26
21
  google-auth-httplib2 = "==0.1.1"
27
22
  google-auth-oauthlib = "==1.1.0"
28
23
  google-api-python-client-stubs = "==1.18.0"
24
+ airbyte-cdk = {extras = ["file-based"], version = "^6.45.10"}
29
25
 
30
- [tool.poetry.dependencies.airbyte-cdk]
31
- extras = [
32
- "file-based",
33
- ]
34
- version = "^6.45.10"
35
26
 
36
27
  [tool.poetry.scripts]
37
28
  source-google-drive = "source_google_drive.run:run"
@@ -40,7 +31,10 @@ source-google-drive = "source_google_drive.run:run"
40
31
  pytest-mock = "^3.12.0"
41
32
  pytest = "^8.0.0"
42
33
 
34
+
43
35
  [tool.poe]
44
36
  include = [
37
+ # Shared tasks definition file(s) can be imported here.
38
+ # Run `poe` or `poe --help` to see the list of available tasks.
45
39
  "${POE_GIT_DIR}/poe-tasks/poetry-connector-tasks.toml",
46
40
  ]