Initial project structure

This commit is contained in:
Tasnim Kabir Sadik
2026-04-09 21:18:27 +06:00
parent 73ab947f31
commit 4e02061bc9
7 changed files with 2059 additions and 0 deletions

26
pyproject.toml Normal file
View File

@ -0,0 +1,26 @@
[project]
name = "wrenn"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
authors = [
{ name = "Tasnim Kabir Sadik", email = "tksadik92@gmail.com" }
]
requires-python = ">=3.13"
dependencies = [
"httpx>=0.28.1",
"pydantic>=2.12.5",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"datamodel-code-generator>=0.56.0",
"mypy>=1.20.0",
"pytest>=9.0.3",
"pytest-asyncio>=1.3.0",
"ruff>=0.15.10",
]