Skip to content

Commit 9e84e51

Browse files
committed
Update pyproject.toml
1 parent fddd16d commit 9e84e51

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

pyproject.toml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
1+
[project]
2+
name = "ferry-planner"
3+
version = "0.1.0"
4+
description = "BC Ferries sailing planner website server"
5+
readme = "readme.md"
6+
requires-python = ">=3.11"
7+
dependencies = [
8+
"fastapi~=0.112.2",
9+
"pydantic>=2.7.0,<3.0.0",
10+
"pydantic-settings~=2.4.0",
11+
"jinja2~=3.1.4",
12+
"httpx~=0.27.0",
13+
"beautifulsoup4~=4.12.3",
14+
"tzdata~=2024.1",
15+
"uvicorn[standard]~=0.30.6",
16+
]
17+
18+
[tool.uv]
19+
dev-dependencies = [
20+
"pre-commit~=3.8.0",
21+
]
22+
23+
[build-system]
24+
requires = ["setuptools"]
25+
build-backend = "setuptools.build_meta"
26+
127
[tool.ruff]
228
src = ["src"]
329
line-length = 119

0 commit comments

Comments
 (0)