## 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 ❌
38 lines
967 B
TOML
38 lines
967 B
TOML
[build-system]
|
|
requires = [ "poetry-core>=1.0.0",]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.poetry]
|
|
version = "0.4.51"
|
|
name = "source-convex"
|
|
description = "Source implementation for Convex."
|
|
authors = [ "Airbyte <contact@airbyte.io>",]
|
|
license = "ELv2"
|
|
readme = "README.md"
|
|
documentation = "https://docs.airbyte.com/integrations/sources/convex"
|
|
homepage = "https://airbyte.com"
|
|
repository = "https://github.com/airbytehq/airbyte"
|
|
[[tool.poetry.packages]]
|
|
include = "source_convex"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.9,<3.12"
|
|
airbyte-cdk = "0.80.0"
|
|
|
|
[tool.poetry.scripts]
|
|
source-convex = "source_convex.run:run"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
responses = "^0.13.3"
|
|
requests-mock = "^1.9.3"
|
|
pytest-mock = "^3.6.1"
|
|
pytest = "^8.0.0"
|
|
|
|
|
|
[tool.poe]
|
|
include = [
|
|
# Shared tasks definition file(s) can be imported here.
|
|
# Run `poe` or `poe --help` to see the list of available tasks.
|
|
"${POE_GIT_DIR}/poe-tasks/poetry-connector-tasks.toml",
|
|
]
|