-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
86 lines (78 loc) · 2.35 KB
/
Copy pathpyproject.toml
File metadata and controls
86 lines (78 loc) · 2.35 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
[project]
name = "etter"
version = "0.7.0"
description = "Natural language geographic query parsing using LLMs"
readme = "README.md"
license = "BSD-3-Clause"
license-files = ["LICENSE"]
authors = [{ name = "etter contributors" }]
requires-python = ">=3.10"
keywords = ["gis", "nlp", "llm", "spatial", "natural-language", "location-parsing", "structured-output"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: GIS",
]
dependencies = [
"langchain>=1.2",
"pydantic>=2.12",
"shapely>=2.1.2",
"pyproj>=3.7",
"geopandas>=1.1",
"rapidfuzz>=3.14",
"geojson>=3.2",
]
[project.urls]
Homepage = "https://geoblocks.github.io/etter/"
Repository = "https://github.com/geoblocks/etter"
Documentation = "https://geoblocks.github.io/etter/"
Changelog = "https://github.com/geoblocks/etter/blob/main/CHANGELOG.md"
"Issue Tracker" = "https://github.com/geoblocks/etter/issues"
[project.optional-dependencies]
postgis = [
"sqlalchemy>=2.0",
"geoalchemy2>=0.15",
]
dev = [
"langchain-anthropic>=1.5.6",
"langchain-openai>=1.1.14",
"pytest>=9.0.3",
"pytest-cov>=7.0",
"ruff>=0.15",
"ty>=0.0.31",
"pdoc>=14.0",
"fastapi>=0.135",
"python-dotenv>=1.2",
"uvicorn>=0.44.0",
"mcp[cli]>=1.27.0",
"rich>=15.0.0",
"trio>=0.28",
# PostGIS integration tests
"testcontainers[postgres]>=4.14.2",
"psycopg2-binary>=2.9",
"etter[postgis]",
]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.ruff]
line-length = 120
target-version = "py310"
[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_*"]