Spaces:
Sleeping
Sleeping
File size: 359 Bytes
e40294e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "order_picking"
version = "1.0.0"
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',
]
[project.scripts]
run-app = "order_picking:main"
|