-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
38 lines (34 loc) · 999 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
37
38
[tool.poetry]
name = "airbyte-connector-generator-poc"
version = "0.0.0"
description = "Generates low-oode (YAML) connectors for Airbyte using LLMs"
authors = [
"Philip Andersson <philip@skyffel.com>, Eric Zakariasson <eric@skyffel.com>",
]
license = "LICENSE"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
openai = "^1.13.3"
pyyaml = "^6.0.1"
jsonschema = "^4.21.1"
python-dotenv = "^1.0.1"
beautifulsoup4 = "^4.12.3"
openapi-spec-validator = "^0.7.1"
html2text = "^2024.2.26"
mypy = "^1.8.0"
typer = {extras = ["all"], version = "^0.9.0"}
validators = "^0.22.0"
playwright = "^1.41.2"
types-pyyaml = "^6.0.12.12"
types-beautifulsoup4 = "^4.12.0.20240229"
types-jsonschema = "^4.21.0.20240118"
types-requests = "^2.31.0.20240218"
rich = "^13.7.1"
[tool.poetry.scripts]
skyffel = "airbyte_connector_generator_poc.main:cli"
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.29.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"