-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (43 loc) · 1.02 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
[project]
name = "dsview"
version = "0.1.2"
description = "Add your description here"
readme = "README.md"
authors = [
{ name = "thibaultdu", email = "39222414+thibaultdu@users.noreply.github.com" }
]
requires-python = ">=3.11"
dependencies = [
"azure-ai-inference>=1.0.0b6",
"fastapi[standard]>=0.115.6",
"langchain-anthropic>=0.3.1",
"langchain>=0.3.11",
"langchain-community>=0.3.11",
"langchain-experimental>=0.3.3",
"langchain-openai>=0.2.12",
"levenshtein>=0.26.1",
"mlflow>=2.19.0",
"numpy>=1.26.4",
"obsidiantools>=0.10.0",
"omegaconf>=2.3.0",
"pandas>=2.2.3",
"pydantic>=2.10.3",
"pypdf>=5.1.0",
"python-dotenv>=1.0.1",
"python-frontmatter>=1.1.0",
"pyyaml>=6.0.2",
"rich>=13.9.4",
"scikit-learn>=1.6.0",
"sqlmodel>=0.0.22",
"streamlit>=1.41.1",
"tiktoken>=0.8.0",
"typer>=0.15.1",
"openai>=1.57.4",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"jupyter>=1.1.1",
]