Files
HCFS/hcfs-python/pyproject.toml
2025-07-30 09:34:16 +10:00

51 lines
1.0 KiB
TOML

[project]
name = "hcfs"
version = "0.1.0"
description = "Context-Aware Hierarchical Context File System"
authors = [{name = "Tony", email = "tony@example.com"}]
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"pyfuse3>=3.2.0",
"sqlalchemy>=2.0.0",
"sentence-transformers>=2.2.0",
"numpy>=1.21.0",
"scikit-learn>=1.0.0",
"faiss-cpu>=1.7.0",
"fastapi>=0.95.0",
"uvicorn>=0.20.0",
"pydantic>=2.0.0",
"aiofiles>=23.0.0",
"click>=8.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"isort>=5.12.0",
"mypy>=1.0.0",
"pre-commit>=3.0.0",
]
[build-system]
requires = ["setuptools>=65.0", "wheel"]
build-backend = "setuptools.build_meta"
[project.scripts]
hcfs = "hcfs.cli:main"
[tool.black]
line-length = 88
target-version = ['py39']
[tool.isort]
profile = "black"
line_length = 88
[tool.mypy]
python_version = "3.9"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true