1
0
mirror of synced 2025-12-22 03:21:25 -05:00
Files
airbyte/airbyte-integrations/connectors/source-railz/unit_tests/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

33 lines
849 B
TOML

[build-system]
requires = [ "poetry-core>=1.0.0",]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
version = "0.2.1"
name = "source-railz"
description = "Source implementation for Railz."
authors = [ "Airbyte <contact@airbyte.io>",]
license = "ELv2"
readme = "README.md"
documentation = "https://docs.airbyte.com/integrations/sources/railz"
homepage = "https://airbyte.com"
repository = "https://github.com/airbytehq/airbyte"
[tool.poetry.dependencies]
python = "^3.10,<3.13"
airbyte-cdk = "6.31.1"
pytest = "^8"
pytest-mock = "^3.6.1"
[tool.pytest.ini_options]
filterwarnings = [
"ignore:This class is experimental*"
]
[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",
]