File size: 462 Bytes
87dc9ce
 
 
 
 
 
 
 
 
 
 
 
 
 
 
784416b
 
 
 
87dc9ce
 
 
 
 
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"


[project]
name = "vehicle_routing"
version = "1.0.1"
requires-python = ">=3.10"
dependencies = [
    'solverforge-legacy == 1.24.1',
    'fastapi == 0.111.0',
    'pydantic == 2.7.3',
    'uvicorn == 0.30.1',
    'pytest == 8.2.2',
    'osmnx >= 1.9.0',
    'networkx >= 3.0',
    'polyline >= 2.0.0',
    'scikit-learn >= 1.0.0',
]


[project.scripts]
run-app = "vehicle_routing:main"