File size: 970 Bytes
f00d669
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
b34c92a
f00d669
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
[project]
name = "discoverroute"
version = "0.1.0"
description = "Routes that deliberately detour past places matching your taste, within a travel-time budget. Paris, OSM, small-model."
readme = "README.md"
requires-python = ">=3.10,<3.13"
dependencies = [
    "osmnx>=2.0,<3.0",
    "networkx>=3.0",
    "folium>=0.17",
    "gradio>=6.0",
    "numpy>=1.26",
    "pandas>=2.0",
    "shapely>=2.0",
    "scikit-learn>=1.4",
    "pyarrow>=15.0",
]

[project.optional-dependencies]
# Brick 4/6: vibe interpretation + narration. Kept optional so the
# walking skeleton (Bricks 0-3) installs without ML weights.
ml = [
    "fastembed>=0.4",
    "sentence-transformers>=3.0",
    "transformers>=4.45",
    "accelerate>=1.0",
    "huggingface-hub>=0.25",
]
dev = [
    "pytest>=8.0",
]

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[tool.hatch.build.targets.wheel]
packages = ["src/discoverroute"]

[tool.pytest.ini_options]
testpaths = ["tests"]