-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (35 loc) · 823 Bytes
/
pyproject.toml
File metadata and controls
42 lines (35 loc) · 823 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
32
33
34
35
36
37
38
39
40
41
42
[project]
name = "cocoindex-workspace"
version = "0.1.0"
description = "CocoIndex workspace for Claude Code CLI workflows on Mac"
requires-python = ">=3.11"
dependencies = [
# Core CocoIndex with embeddings support
"cocoindex[embeddings]>=0.3.9",
# Environment and database
"python-dotenv>=1.0.1",
"pgvector>=0.4.1",
"psycopg[binary,pool]",
"numpy",
# Anthropic Claude API for LLM extraction
"anthropic>=0.25.0",
# Web server for FastAPI integration
"fastapi>=0.100.0",
"uvicorn>=0.20.0",
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-asyncio",
"ruff",
"mypy",
]
[tool.setuptools]
packages = ["flows"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.mypy]
python_version = "3.11"
strict = false
ignore_missing_imports = true