36 lines
774 B
TOML
36 lines
774 B
TOML
[project]
|
|
name = "innercontext"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"alembic>=1.14",
|
|
"fastapi>=0.132.0",
|
|
"google-genai>=1.65.0",
|
|
"pyjwt[crypto]>=2.10.1",
|
|
"psycopg[binary]>=3.3.3",
|
|
"python-dotenv>=1.2.1",
|
|
"python-multipart>=0.0.22",
|
|
"sqlmodel>=0.0.37",
|
|
"uvicorn[standard]>=0.34.0",
|
|
]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"black>=26.1.0",
|
|
"httpx>=0.28.1",
|
|
"isort>=8.0.0",
|
|
"pytest>=9.0.2",
|
|
"pytest-cov>=6.0.0",
|
|
"ruff>=0.15.2",
|
|
"ty>=0.0.18",
|
|
]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
pythonpath = ["."]
|
|
addopts = "-v --tb=short --cov=innercontext --cov-report=term-missing --cov-report=html"
|
|
|
|
[tool.isort]
|
|
profile = "black"
|