37 lines
782 B
TOML
37 lines
782 B
TOML
[build-system]
|
|
requires = ["setuptools>=68.0", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "atocore"
|
|
version = "0.1.0"
|
|
description = "Personal context engine for LLM interactions"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"fastapi>=0.110.0",
|
|
"uvicorn[standard]>=0.27.0",
|
|
"python-frontmatter>=1.1.0",
|
|
"chromadb>=0.4.22",
|
|
"sentence-transformers>=2.5.0",
|
|
"pydantic>=2.6.0",
|
|
"pydantic-settings>=2.1.0",
|
|
"structlog>=24.1.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=8.0.0",
|
|
"pytest-cov>=4.1.0",
|
|
"httpx>=0.27.0",
|
|
"pyyaml>=6.0.0",
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
python_files = ["test_*.py"]
|
|
python_functions = ["test_*"]
|
|
addopts = "-v"
|