-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (56 loc) · 1.27 KB
/
pyproject.toml
File metadata and controls
63 lines (56 loc) · 1.27 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
[project]
name = "etter"
version = "0.1.0"
description = "Natural language geographic query parsing using LLMs"
readme = "README.md"
requires-python = ">=3.10"
authors = [
{name = "etter contributors"}
]
license = {text = "BSD-3-Clause"}
dependencies = [
"langchain>=1.2",
"pydantic>=2.12",
"shapely>=2.1",
"pyproj>=3.7",
"geopandas>=1.1",
"rapidfuzz>=3.14",
]
[project.optional-dependencies]
postgis = [
"sqlalchemy>=2.0",
"geoalchemy2>=0.15",
]
dev = [
"langchain-openai>=1.1",
"pytest>=9.0",
"pytest-cov>=7.0",
"ruff>=0.15",
"ty>=0.0",
"pdoc>=14.0",
"fastapi>=0.135",
"python-dotenv>=1.2",
"uvicorn>=0.41",
"mcp[cli]>=1.26",
"rich>=13.0",
# PostGIS integration tests
"testcontainers[postgres]>=4.0",
"psycopg2-binary>=2.9",
"etter[postgis]",
]
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.ruff]
line-length = 120
target-version = "py313"
[tool.ruff.lint]
select = ["F", "I", "E", "W", "UP", "C4", "ARG"]
ignore = ["E501"]
[tool.setuptools]
packages = { find = { where = ["."], include = ["etter*"] } }
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]