-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
50 lines (46 loc) · 1.1 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
[project]
name = "project-zeno"
version = "0.1.0"
description = "Language Interface for Maps & WRI/LCL data APIs."
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"langchain>=0.3.7",
"langchain-anthropic>=0.2.4",
"langchain-community>=0.3.5",
"langchain-ollama>=0.2.0",
"langchain-openai>=0.2.6",
"langchain-community>=0.3.11",
"streamlit>=1.40.0",
"langfuse>=2.53.9",
"langchain-chroma>=0.1.4",
"thefuzz>=0.22.1",
"fastapi[standard]>=0.115.4",
"watchdog>=5.0.3",
"uvicorn[standard]>=0.32.0",
"streamlit-folium>=0.23.2",
"earthengine-api>=1.4.0",
"geojson-pydantic>=1.1.2",
"fiona>=1.10.1",
"geopandas>=1.0.1",
"geemap>=0.35.1",
"langgraph>=0.2.56",
]
[dependency-groups]
dev = [
"jupyterlab>=4.3.0",
"pre-commit>=4.0.1",
"ruff>=0.7.3",
"pytest>=8.3.3",
"matplotlib>=3.9.2",
"geopandas>=1.0.1",
"lancedb>=0.17.0"
]
[tool.ruff]
# Set the maximum line length to 79.
line-length = 79
[tool.ruff.lint]
select = ["E", "F", "W", "Q", "I"]
ignore = ["E501"]
[tool.ruff.format]
quote-style = "double"