-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (30 loc) · 791 Bytes
/
pyproject.toml
File metadata and controls
36 lines (30 loc) · 791 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
[project]
name = "llmephant"
version = "0.3.8"
description = "Stateful memory for stateless LLMs"
readme = "README.md"
requires-python = ">=3.14"
dependencies = [
"fastapi>=0.124.0",
"httpx>=0.28.1",
"pydantic>=2.12.5",
"pydantic-settings>=2.12.0",
"python-multipart>=0.0.24",
"qdrant-client>=1.16.1",
"sentence-transformers>=5.1.2",
"uvicorn[standard]>=0.38.0",
]
[project.scripts]
api = "llmephant.app:app"
[dependency-groups]
dev = ["pytest>=9.0.2", "pytest-asyncio>=1.3.0", "ruff>=0.14.13"]
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]