-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
70 lines (62 loc) · 1.49 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[tool.poetry]
name = "gpt-training"
version = "0.1.0"
description = "GPT Training"
authors = ["Masato Naka <masatonaka1989@gmail.com>"]
readme = "README.md"
packages = [{include = "src"}]
[tool.poetry.dependencies]
python = "^3.12"
mkdocs-material = "^9.5.3"
streamlit = "^1.30.0"
openai = "^1.7.2"
langchain = "^0.3.0"
langchain-openai = "^0.3.0"
google-api-python-client = "^2.115.0"
langchain-google-genai = "^2.0.0"
pillow = "^11.0.0"
langgraph = "^0.2.0"
wikipedia = "^1.4.0"
google-search-results = "^2.4.2"
tabulate = "^0.9.0"
langchain-community = "^0.3.0"
langchain-experimental = "^0.3.0"
langchain-google-community = "^2.0.0"
browser-use = "^0.1.17"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.0"
pytest-cov = "^6.0.0"
pytest-env = "^1.1.3"
poetry-dotenv-plugin = "^0.2.0"
mkdocs-awesome-pages-plugin = "^2.9.2"
ruff = "^0.9.0"
langchain-cli = "^0.0.35"
[tool.ruff]
exclude = [
".venv",
"venv",
"__pycache__",
".git",
]
line-length = 200
indent-width = 4
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
# From https://github.com/googleapis/google-cloud-python/issues/11184
# https://docs.pytest.org/en/stable/reference/customize.html
[tool.pytest.ini_options]
testpaths = [
"tests",
]
pythonpath = [
"src",
]
addopts = "--junitxml=pytest.xml --cov-report=term-missing --cov=src tests/ -vvv -s"
env = [
"ENV=test",
"OPENAI_API_KEY=dummy",
"OPENAI_ORGANIZATION=dummy",
"GOOGLE_CSE_ID=dummy",
"GOOGLE_API_KEY=dummy",
]