Initial commit.

This commit is contained in:
2025-06-09 15:18:16 +02:00
commit 47d4ed1cc0
10 changed files with 1858 additions and 0 deletions

View File

@ -0,0 +1,46 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "devbox-email-api"
version = "1.0.0"
description = "Email collection API for DevBox landing page"
readme = "README.md"
license = {text = "MIT"}
authors = [
{name = "DevBox Team"},
]
requires-python = ">=3.8"
dependencies = [
"fastapi>=0.104.0",
"uvicorn[standard]>=0.24.0",
"pydantic[email]>=2.5.0",
"python-multipart>=0.0.6",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"black>=23.0.0",
"isort>=5.12.0",
"flake8>=6.0.0",
]
[project.urls]
Homepage = "https://github.com/yourusername/devbox-email-api"
Repository = "https://github.com/yourusername/devbox-email-api"
[tool.hatch.build.targets.wheel]
packages = ["src"]
[tool.black]
line-length = 88
target-version = ['py38']
[tool.isort]
profile = "black"
line_length = 88
[project.scripts]
devbox-api = "main:main"