-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Augustin <augustin@airbyte.io>
- Loading branch information
1 parent
2f77609
commit 6c2c13a
Showing
7 changed files
with
1,164 additions
and
75 deletions.
There are no files selected for viewing
5 changes: 0 additions & 5 deletions
5
airbyte-integrations/connectors/destination-kvdb/.dockerignore
This file was deleted.
Oops, something went wrong.
38 changes: 0 additions & 38 deletions
38
airbyte-integrations/connectors/destination-kvdb/Dockerfile
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1,108 changes: 1,108 additions & 0 deletions
1,108
airbyte-integrations/connectors/destination-kvdb/poetry.lock
Large diffs are not rendered by default.
Oops, something went wrong.
31 changes: 31 additions & 0 deletions
31
airbyte-integrations/connectors/destination-kvdb/pyproject.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
[build-system] | ||
requires = [ "poetry-core>=1.0.0",] | ||
build-backend = "poetry.core.masonry.api" | ||
|
||
[tool.poetry] | ||
version = "0.1.3" | ||
name = "destination-kvdb" | ||
description = "Destination implementation for kvdb." | ||
authors = [ "Airbyte <contact@airbyte.io>",] | ||
license = "MIT" | ||
readme = "README.md" | ||
documentation = "https://docs.airbyte.com/integrations/destinations/kvdb" | ||
homepage = "https://airbyte.com" | ||
repository = "https://github.com/airbytehq/airbyte" | ||
[[tool.poetry.packages]] | ||
include = "destination_kvdb" | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.9,<3.12" | ||
airbyte-cdk = "^0.62.1" | ||
sgqlc = "==16.3" | ||
|
||
[tool.poetry.scripts] | ||
destination-kvdb = "destination_kvdb.run:run" | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
requests-mock = "^1.9.3" | ||
freezegun = "^1.2" | ||
pytest-mock = "^3.6.1" | ||
pytest = "^6.2" | ||
responses = "^0.23.1" |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters