-
Notifications
You must be signed in to change notification settings - Fork 4.3k
/
Copy pathpyproject.toml
36 lines (30 loc) · 970 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
version = "0.4.25"
name = "source-freshcaller"
description = "Source implementation for Freshcaller"
authors = ["Airbyte <contact@airbyte.io>"]
license = "MIT"
readme = "README.md"
documentation = "https://docs.airbyte.com/integrations/sources/freshcaller"
homepage = "https://airbyte.com"
repository = "https://github.com/airbytehq/airbyte"
[[tool.poetry.packages]]
include = "source_freshcaller"
[tool.poetry.dependencies]
python = "^3.9,<3.12"
airbyte-cdk = "0.55.2"
[tool.poetry.scripts]
source-freshcaller = "source_freshcaller.run:run"
[tool.poetry.group.dev.dependencies]
requests-mock = "^1.9.3"
pytest-mock = "^3.12.0"
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",
]