31 lines
661 B
TOML
31 lines
661 B
TOML
[build-system]
|
|
requires = ["setuptools>=61.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "ihasmail"
|
|
version = "0.2.0"
|
|
description = "ihasmail — JMAP webmail for Stalwart (FastAPI, HTMX/Jinja)"
|
|
authors = [{name = "John Coffey", email = "[email protected]"}]
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
license = {text = "GPL-3.0-or-later"}
|
|
dependencies = [
|
|
"fastapi>=0.111",
|
|
"uvicorn[standard]>=0.30",
|
|
"httpx>=0.27",
|
|
"jinja2>=3.1",
|
|
"bleach>=6.1",
|
|
"python-multipart>=0.0.9",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=8.2",
|
|
"anyio>=4.4",
|
|
"httpx>=0.27",
|
|
]
|
|
|
|
[tool.pytest.ini_options]
|
|
addopts = "-q"
|