employee-scheduling-python / pyproject.toml
blackopsrepl's picture
Add Employee Scheduling Quickstart Demo
e510416
raw
history blame contribute delete
371 Bytes
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "employee_scheduling"
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',
]
[project.scripts]
run-app = "employee_scheduling:main"