-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (39 loc) · 989 Bytes
/
pyproject.toml
File metadata and controls
45 lines (39 loc) · 989 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[build-system]
requires = ["hatchling>=1.27.0"]
build-backend = "hatchling.build"
[project]
name = "context-engine"
version = "0.2.0"
description = "Structured context infrastructure for AI systems"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"fastapi>=0.115.12,<1.0.0",
"httpx>=0.28.1,<1.0.0",
"litellm>=1.40.0,<2.0.0",
"mcp>=1.0.0,<2.0.0",
"python-multipart>=0.0.9,<1.0.0",
"pydantic-settings>=2.8.1,<3.0.0",
"sqlalchemy>=2.0.39,<3.0.0",
"uvicorn[standard]>=0.34.0,<1.0.0",
"aiosqlite>=0.20.0,<1.0.0",
"asyncpg>=0.29.0,<1.0.0",
"cryptography>=42.0.0,<46.0.0",
]
[project.scripts]
ctxe = "app.cli.main:main"
[project.optional-dependencies]
dev = [
"httpx>=0.28.1,<1.0.0",
"pytest>=8.3.5,<9.0.0",
"pytest-asyncio>=0.26.0,<1.0.0",
"ruff>=0.11.2,<1.0.0",
]
[tool.hatch.build.targets.wheel]
packages = ["app"]
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]