airbyte-source-google-drive 0.4.0rc1__tar.gz → 0.5.4.dev202511142121__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.
Files changed (13) hide show
  1. {airbyte_source_google_drive-0.4.0rc1 → airbyte_source_google_drive-0.5.4.dev202511142121}/PKG-INFO +7 -5
  2. {airbyte_source_google_drive-0.4.0rc1 → airbyte_source_google_drive-0.5.4.dev202511142121}/pyproject.toml +10 -16
  3. {airbyte_source_google_drive-0.4.0rc1 → airbyte_source_google_drive-0.5.4.dev202511142121}/README.md +0 -0
  4. {airbyte_source_google_drive-0.4.0rc1 → airbyte_source_google_drive-0.5.4.dev202511142121}/source_google_drive/__init__.py +0 -0
  5. {airbyte_source_google_drive-0.4.0rc1 → airbyte_source_google_drive-0.5.4.dev202511142121}/source_google_drive/exceptions.py +0 -0
  6. {airbyte_source_google_drive-0.4.0rc1 → airbyte_source_google_drive-0.5.4.dev202511142121}/source_google_drive/run.py +0 -0
  7. {airbyte_source_google_drive-0.4.0rc1 → airbyte_source_google_drive-0.5.4.dev202511142121}/source_google_drive/schemas/file_permissions.json +0 -0
  8. {airbyte_source_google_drive-0.4.0rc1 → airbyte_source_google_drive-0.5.4.dev202511142121}/source_google_drive/schemas/identities.json +0 -0
  9. {airbyte_source_google_drive-0.4.0rc1 → airbyte_source_google_drive-0.5.4.dev202511142121}/source_google_drive/source.py +0 -0
  10. {airbyte_source_google_drive-0.4.0rc1 → airbyte_source_google_drive-0.5.4.dev202511142121}/source_google_drive/spec.py +0 -0
  11. {airbyte_source_google_drive-0.4.0rc1 → airbyte_source_google_drive-0.5.4.dev202511142121}/source_google_drive/stream_permissions_reader.py +0 -0
  12. {airbyte_source_google_drive-0.4.0rc1 → airbyte_source_google_drive-0.5.4.dev202511142121}/source_google_drive/stream_reader.py +0 -0
  13. {airbyte_source_google_drive-0.4.0rc1 → airbyte_source_google_drive-0.5.4.dev202511142121}/source_google_drive/utils.py +0 -0
@@ -1,22 +1,24 @@
1
- Metadata-Version: 2.3
1
+ Metadata-Version: 2.1
2
2
  Name: airbyte-source-google-drive
3
- Version: 0.4.0rc1
3
+ Version: 0.5.4.dev202511142121
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
8
- Requires-Python: >=3.10,<3.12
9
+ Requires-Python: >=3.10,<3.14
9
10
  Classifier: License :: Other/Proprietary License
10
11
  Classifier: Programming Language :: Python :: 3
11
12
  Classifier: Programming Language :: Python :: 3.10
12
13
  Classifier: Programming Language :: Python :: 3.11
13
- Requires-Dist: airbyte-cdk[file-based] (>=6.45.10,<7.0.0)
14
+ Classifier: Programming Language :: Python :: 3.12
15
+ Classifier: Programming Language :: Python :: 3.13
16
+ Requires-Dist: airbyte-cdk[file-based] (==7.5.0.post8.dev19376730186)
14
17
  Requires-Dist: google-api-python-client (==2.104.0)
15
18
  Requires-Dist: google-api-python-client-stubs (==1.18.0)
16
19
  Requires-Dist: google-auth-httplib2 (==0.1.1)
17
20
  Requires-Dist: google-auth-oauthlib (==1.1.0)
18
21
  Project-URL: Documentation, https://docs.airbyte.com/integrations/sources/google-drive
19
- Project-URL: Homepage, https://airbyte.com
20
22
  Project-URL: Repository, https://github.com/airbytehq/airbyte
21
23
  Description-Content-Type: text/markdown
22
24
 
@@ -1,37 +1,28 @@
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.0-rc.1"
6
+ version = "0.5.4.dev.202511142121"
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
- python = "^3.10,<3.12"
19
+ python = "^3.10,<3.14"
25
20
  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 = "7.5.0.post8.dev19376730186"}
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
  ]