## 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 ❌
37 lines
974 B
TOML
37 lines
974 B
TOML
[build-system]
|
|
requires = [ "poetry-core>=1.0.0",]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.poetry]
|
|
version = "0.2.30"
|
|
name = "source-public-apis"
|
|
description = "Source implementation for Public Apis."
|
|
authors = [ "Airbyte <contact@airbyte.io>",]
|
|
license = "ELv2"
|
|
readme = "README.md"
|
|
documentation = "https://docs.airbyte.com/integrations/sources/public-apis"
|
|
homepage = "https://airbyte.com"
|
|
repository = "https://github.com/airbytehq/airbyte"
|
|
[[tool.poetry.packages]]
|
|
include = "source_public_apis"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.9,<3.12"
|
|
airbyte-cdk = "1.0.0"
|
|
|
|
[tool.poetry.scripts]
|
|
source-public-apis = "source_public_apis.run:run"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
requests-mock = "^1.9.3"
|
|
pytest = "^8.0.0"
|
|
pytest-mock = "^3.6.1"
|
|
|
|
|
|
[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",
|
|
]
|