-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (27 loc) · 769 Bytes
/
Copy pathpyproject.toml
File metadata and controls
31 lines (27 loc) · 769 Bytes
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "bob-dev"
version = "0.2.3"
description = "An AI developer to write code for you"
readme = "README.md"
authors = [{ name="Samuel Pereira dos Santos", email="samuelsantosdev@gmail.com" }]
requires-python = ">=3.12.10"
dependencies = [
"faiss-cpu>=1.9.0",
"langchain>=0.3.0",
"langchain-community>=0.3.0",
"langchain-openai>=0.2.0",
"langchain-text-splitters>=0.3.0",
]
[project.scripts]
bob-dev = "bob_dev.cli:main"
[project.optional-dependencies]
dev = ["pytest>=8.0", "pytest-asyncio>=0.23"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
filterwarnings = [
"ignore:.*langchain-community.*:DeprecationWarning",
]