forked from morphik-org/morphik-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
97 lines (92 loc) · 2.2 KB
/
pyproject.toml
File metadata and controls
97 lines (92 loc) · 2.2 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
[project]
name = "morphik-core"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"anthropic>=0.51.0",
"arq>=0.26.3",
"assemblyai>=0.40.2",
"asyncio>=3.4.3",
"asyncpg>=0.30.0",
"beautifulsoup4>=4.12.3",
"boto3>=1.38.14",
"build>=1.2.2.post1",
"dotenv>=0.9.9",
"fastapi>=0.115.12",
"filetype>=1.2.0",
"flagembedding>=1.3.4",
"google-api-python-client>=2.169.0",
"google-auth>=2.40.1",
"google-auth-oauthlib>=1.2.2",
"google-genai>=1.15.0",
"greenlet>=3.2.2",
"httpx[http2]>=0.28.1",
"importlib>=1.0.4",
"instructor>=1.8.1",
"itsdangerous>=2.2.0",
"litellm>=1.69.1",
"lxml>=5.2.2",
"morphik==0.2.7",
"ollama>=0.4.8",
"openai>=1.75.0",
"opencv-python>=4.11.0.86",
"openpyxl>=3.1.2",
"opentelemetry-exporter-otlp>=1.33.0",
"opentelemetry-instrumentation-fastapi>=0.54b0",
"pgvector>=0.4.1",
"python-docx>=1.1.0",
"python-pptx>=0.6.23",
"chardet>=5.2.0",
"pre-commit>=4.2.0",
"psycopg>=3.2.9",
"psycopg-binary>=3.2.9",
"psycopg-pool>=3.2.6",
"psycopg2-binary>=2.9.9",
"PyGithub>=2.3.0",
"pydantic>=2.11.4",
"pydantic-settings>=2.9.1",
"pymupdf==1.25.5",
"pytest>=8.3.5",
"pytest-asyncio>=0.26.0",
"python-multipart>=0.0.20",
"pyzotero>=1.6.11",
"requests>=2.32.3",
"sqlalchemy>=2.0.40",
"stripe>=12.1.0",
"toml>=0.10.2",
"tomli>=2.2.1",
"torch==2.5.1",
"torchaudio==2.5.1",
"torchvision==0.20.1",
"tqdm>=4.67.1",
"transformers==4.51.3",
"twine>=6.1.0",
"ty>=0.0.1a6",
"unstructured[pdf]>=0.17.2",
"uvicorn>=0.34.2",
# --- profiling & analysis ---
"yappi>=1.6.0",
"snakeviz>=2.2.0",
"pyprof2calltree>=1.4.5",
"line_profiler>=4.1.2",
"types-boto3[s3]>=1.39.1",
"sentry-sdk[fastapi]>=2.33.0",
"turbopuffer>=0.5.8",
]
[dependency-groups]
dev-local = [
"fixed-dimensional-encoding",
"turbopuffer>=0.5.8",
]
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
line_length = 120
[tool.ruff]
line-length = 120
ignore = ["I"]
[tool.uv.sources]
fixed-dimensional-encoding = { path = "fde" }