From 9e84e511be0b0528adbcd9df88155e3a68e557be Mon Sep 17 00:00:00 2001 From: Lemonyte <49930425+lemonyte@users.noreply.github.com> Date: Wed, 28 Aug 2024 16:08:29 -0700 Subject: [PATCH] Update pyproject.toml --- pyproject.toml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index f9324dd..73e96db 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,3 +1,29 @@ +[project] +name = "ferry-planner" +version = "0.1.0" +description = "BC Ferries sailing planner website server" +readme = "readme.md" +requires-python = ">=3.11" +dependencies = [ + "fastapi~=0.112.2", + "pydantic>=2.7.0,<3.0.0", + "pydantic-settings~=2.4.0", + "jinja2~=3.1.4", + "httpx~=0.27.0", + "beautifulsoup4~=4.12.3", + "tzdata~=2024.1", + "uvicorn[standard]~=0.30.6", +] + +[tool.uv] +dev-dependencies = [ + "pre-commit~=3.8.0", +] + +[build-system] +requires = ["setuptools"] +build-backend = "setuptools.build_meta" + [tool.ruff] src = ["src"] line-length = 119