feat: Add new tools and configurations for Castle platform
- Introduced `uv.lock` for dependency management with various packages including `pytest`, `colorama`, and `pluggy`. - Added `pyrightconfig.json` for Python type checking configuration. - Expanded `recommendations.md` with detailed scaling recommendations and project management strategies. - Created shared `ruff.toml` for consistent linting across projects. - Developed `Castle Tools` with various utilities including Android backup, browser automation, document conversion, and search tools. - Implemented `backup-collect` and `schedule` tools for system administration tasks. - Enhanced `search` functionality with indexing and querying capabilities using Tantivy. - Added comprehensive documentation for each tool, including usage examples and installation instructions.
This commit is contained in:
22
tools/search/pyproject.toml
Normal file
22
tools/search/pyproject.toml
Normal file
@@ -0,0 +1,22 @@
|
||||
[project]
|
||||
name = "castle-search"
|
||||
version = "0.1.0"
|
||||
description = "Castle search and indexing tools"
|
||||
requires-python = ">=3.11"
|
||||
dependencies = [
|
||||
"toml>=0.10.2",
|
||||
"pymupdf>=1.24.11",
|
||||
]
|
||||
|
||||
[project.scripts]
|
||||
search = "search.search:main"
|
||||
pdf-extractor = "search.pdf_extractor:main"
|
||||
docx-extractor = "search.docx_extractor:main"
|
||||
text-extractor = "search.text_extractor:main"
|
||||
|
||||
[build-system]
|
||||
requires = ["hatchling"]
|
||||
build-backend = "hatchling.build"
|
||||
|
||||
[tool.hatch.build.targets.wheel]
|
||||
packages = ["src/search"]
|
||||
Reference in New Issue
Block a user