29 lines
788 B
TOML
29 lines
788 B
TOML
[build-system]
|
|
requires = [ "poetry-core>=1.0.0",]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.poetry]
|
|
version = "0.1.0"
|
|
name = "source-custom-bamboo-hr"
|
|
description = "Source implementation for custom-bamboo-hr."
|
|
authors = [ "Airbyte <contact@airbyte.io>",]
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
documentation = "https://docs.airbyte.com/integrations/sources/custom-bamboo-hr"
|
|
homepage = "https://airbyte.com"
|
|
repository = "https://github.com/airbytehq/airbyte"
|
|
packages = [ { include = "source_custom_bamboo_hr" }, {include = "main.py" } ]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.9,<3.12"
|
|
airbyte-cdk = "^0"
|
|
|
|
[tool.poetry.scripts]
|
|
source-custom-bamboo-hr = "source_custom_bamboo_hr.run:run"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
requests-mock = "*"
|
|
pytest-mock = "*"
|
|
pytest = "*"
|
|
|