meeting-scheduling-python / pyproject.toml
blackopsrepl's picture
Upload 31 files
666f6cf verified
raw
history blame contribute delete
390 Bytes
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "meeting_scheduling"
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',
'httpx == 0.27.0',
]
[project.scripts]
run-app = "meeting_scheduling:main"