-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (33 loc) · 1 KB
/
Copy pathpyproject.toml
File metadata and controls
38 lines (33 loc) · 1 KB
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
[project]
name = "neuro-symbolic-math-solver"
version = "3.0.0"
description = "Hybrid LLM + SymPy + RAG math reasoning system with a BYOK web UI."
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [{ name = "Dinu Bogdan" }]
dependencies = [
"Flask>=3.1",
"requests>=2.32",
"sympy>=1.14",
"chromadb>=1.5",
"duckduckgo-search>=8.1",
"python-dotenv>=1.0",
]
[project.optional-dependencies]
dev = ["pytest>=8.0", "ruff>=0.6"]
[tool.ruff]
line-length = 100
target-version = "py311"
# math_rules.py is generated rule data, not hand-written source.
extend-exclude = ["math_rules.py", ".venv", "chroma_db_reguli"]
[tool.ruff.lint]
select = ["E", "F", "W", "I", "B"]
ignore = ["E741"] # single-letter math variables (l, r, x, y) are intentional
[tool.ruff.lint.per-file-ignores]
"tests/*" = ["E402"] # tests adjust sys.path before importing project modules
[tool.pytest.ini_options]
pythonpath = ["."]
testpaths = ["tests"]
python_files = ["test_*.py"]
addopts = "-q"