Files
memory-gateway/pyproject.toml

36 lines
734 B
TOML

[project]
name = "memory-gateway"
version = "0.1.0"
description = "Lightweight Memory Gateway for EverOS user resources"
requires-python = ">=3.10"
dependencies = [
"fastapi>=0.104.0",
"httpx>=0.25.0",
"pydantic>=2.7.1",
"python-dotenv>=1.0.1",
"python-multipart>=0.0.9",
"uvicorn[standard]>=0.24.0",
]
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["core*"]
[dependency-groups]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
asyncio_mode = "auto"
markers = [
"integration: tests that call a real EverOS service",
]