Spaces:
Sleeping
Sleeping
File size: 503 Bytes
177c40c |
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 = "my_quickstart" # TODO: Change to your project name
version = "1.0.0"
description = "A SolverForge constraint optimization quickstart"
requires-python = ">=3.10"
dependencies = [
'solverforge-legacy == 1.24.1',
'fastapi == 0.111.0',
'pydantic == 2.7.3',
'uvicorn == 0.30.1',
]
[project.optional-dependencies]
dev = [
'pytest == 8.2.2',
]
[project.scripts]
run-app = "my_quickstart:main"
|