1
0
mirror of synced 2025-12-21 02:51:29 -05:00
Files
airbyte/airbyte-integrations/connectors/source-couchbase/pyproject.toml
David Gold 569a6f41a8 update Python connector license in pyproject toml file (#68153)
## What
In the migration to update connector open source licenses, we missed a
couple references. This change necessary to pass our pre-release checks
since we assert that the license in the connector's pyproject.toml file
matches the license in the connector's metadata file. I don't believe
this warrants bumping connector versions.

## Can this PR be safely reverted and rolled back?
<!--
* If unsure, leave it blank.
-->
- [x] YES 💚
- [ ] NO 
2025-10-16 20:24:34 -04:00

32 lines
858 B
TOML

[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
version = "0.1.8"
name = "source-couchbase"
description = "Source implementation for couchbase."
authors = ["Kaustav Ghosh <kaustav.ghosh@couchbase.com>"]
license = "ELv2"
readme = "README.md"
documentation = "https://docs.airbyte.com/integrations/sources/couchbase"
homepage = "https://airbyte.com"
repository = "https://github.com/airbytehq/airbyte"
packages = [{include = "source_couchbase"}, {include = "main.py"}]
[tool.poetry.dependencies]
python = ">=3.10,<3.12"
airbyte-cdk = "^5.13.0"
couchbase = "^4.3.1"
pendulum = "==2.1.2"
requests = "^2.32.3"
[tool.poetry.scripts]
source-couchbase = "source_couchbase.run:run"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
requests-mock = "^1.9.3"
pytest-mock = "^3.6.1"
pendulum = "==2.1.2"