Skip to content

Commit be1565e

Browse files
author
Paul
committed
fix: add mandatory project table and build-system to pyproject.toml
1 parent 664e5d2 commit be1565e

2 files changed

Lines changed: 12 additions & 13 deletions

File tree

pyproject.toml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,22 @@
11
[project]
22
name = "bash-cloud-forge"
3-
version = "1.1.0"
4-
description = "Pure Bash Cloud Provisioning API"
3+
version = "0.1.0"
4+
description = "Enterprise Bash provisioning engine"
5+
readme = "README.md"
6+
requires-python = ">=3.12"
57
dependencies = [
68
"fastapi",
79
"uvicorn[standard]",
810
"pydantic-settings",
911
"sqlalchemy",
1012
"psycopg2-binary",
13+
"python-dotenv",
14+
"supabase"
1115
]
1216

1317
[tool.uv]
1418
managed = true
19+
20+
[build-system]
21+
requires = ["hatchling"]
22+
build-backend = "hatchling.build"

vercel.json

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,6 @@
11
{
22
"version": 2,
3-
"builds": [
4-
{
5-
"src": "main.py",
6-
"use": "@vercel/python"
7-
}
8-
],
9-
"routes": [
10-
{
11-
"src": "/(.*)",
12-
"dest": "main.py"
13-
}
3+
"rewrites": [
4+
{ "source": "/(.*)", "destination": "main.py" }
145
]
156
}

0 commit comments

Comments
 (0)