airbyte-source-convex 0.4.48__tar.gz → 0.4.50__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.
- {airbyte_source_convex-0.4.48 → airbyte_source_convex-0.4.50}/PKG-INFO +3 -3
- {airbyte_source_convex-0.4.48 → airbyte_source_convex-0.4.50}/pyproject.toml +8 -10
- {airbyte_source_convex-0.4.48 → airbyte_source_convex-0.4.50}/README.md +0 -0
- {airbyte_source_convex-0.4.48 → airbyte_source_convex-0.4.50}/source_convex/__init__.py +0 -0
- {airbyte_source_convex-0.4.48 → airbyte_source_convex-0.4.50}/source_convex/run.py +0 -0
- {airbyte_source_convex-0.4.48 → airbyte_source_convex-0.4.50}/source_convex/source.py +0 -0
- {airbyte_source_convex-0.4.48 → airbyte_source_convex-0.4.50}/source_convex/spec.yaml +0 -0
@@ -1,7 +1,8 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.1
|
2
2
|
Name: airbyte-source-convex
|
3
|
-
Version: 0.4.
|
3
|
+
Version: 0.4.50
|
4
4
|
Summary: Source implementation for Convex.
|
5
|
+
Home-page: https://airbyte.com
|
5
6
|
License: MIT
|
6
7
|
Author: Airbyte
|
7
8
|
Author-email: contact@airbyte.io
|
@@ -13,7 +14,6 @@ Classifier: Programming Language :: Python :: 3.10
|
|
13
14
|
Classifier: Programming Language :: Python :: 3.11
|
14
15
|
Requires-Dist: airbyte-cdk (==0.80.0)
|
15
16
|
Project-URL: Documentation, https://docs.airbyte.com/integrations/sources/convex
|
16
|
-
Project-URL: Homepage, https://airbyte.com
|
17
17
|
Project-URL: Repository, https://github.com/airbytehq/airbyte
|
18
18
|
Description-Content-Type: text/markdown
|
19
19
|
|
@@ -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.
|
6
|
+
version = "0.4.50"
|
9
7
|
name = "airbyte-source-convex"
|
10
8
|
description = "Source implementation for Convex."
|
11
|
-
authors = [
|
12
|
-
"Airbyte <contact@airbyte.io>",
|
13
|
-
]
|
9
|
+
authors = [ "Airbyte <contact@airbyte.io>",]
|
14
10
|
license = "MIT"
|
15
11
|
readme = "README.md"
|
16
12
|
documentation = "https://docs.airbyte.com/integrations/sources/convex"
|
17
13
|
homepage = "https://airbyte.com"
|
18
14
|
repository = "https://github.com/airbytehq/airbyte"
|
19
|
-
packages
|
20
|
-
|
21
|
-
]
|
15
|
+
[[tool.poetry.packages]]
|
16
|
+
include = "source_convex"
|
22
17
|
|
23
18
|
[tool.poetry.dependencies]
|
24
19
|
python = "^3.9,<3.12"
|
@@ -33,7 +28,10 @@ requests-mock = "^1.9.3"
|
|
33
28
|
pytest-mock = "^3.6.1"
|
34
29
|
pytest = "^8.0.0"
|
35
30
|
|
31
|
+
|
36
32
|
[tool.poe]
|
37
33
|
include = [
|
34
|
+
# Shared tasks definition file(s) can be imported here.
|
35
|
+
# Run `poe` or `poe --help` to see the list of available tasks.
|
38
36
|
"${POE_GIT_DIR}/poe-tasks/poetry-connector-tasks.toml",
|
39
37
|
]
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|