-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (43 loc) · 998 Bytes
/
pyproject.toml
File metadata and controls
49 lines (43 loc) · 998 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
46
47
48
49
[build-system]
requires = ["setuptools>=67.0"]
build-backend = "setuptools.build_meta"
[project]
name = "cognitive-technique-mapper"
version = "0.2.0"
description = "CLI tool that maps problem descriptions to cognitive techniques using LLM-driven workflows."
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"litellm>=1.35.9",
"chromadb>=0.5.0",
"pydantic>=2.7",
"pyyaml>=6.0.1",
"typer>=0.12.3",
"rich>=13.7",
"sqlite-utils>=3.36",
"tenacity>=9.1.0",
# REST/GraphQL API server
"fastapi>=0.111.0",
"uvicorn[standard]>=0.27.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.2",
"pytest-cov>=5.0",
"pytest-xdist>=3.6",
"pytest-asyncio>=0.23",
"hypothesis>=6.112",
"vcrpy>=5.1",
"ruff>=0.4",
"pyright>=1.1.377",
"types-PyYAML>=6.0.12",
]
graphql = [
"strawberry-graphql>=0.211.0",
]
[tool.black]
line-length = 88
target-version = ["py312"]
[tool.isort]
profile = "black"
line_length = 88