- Add build-system configuration to pyproject.toml - Add project metadata with dependencies from requirements.txt - Add entry point: rag-mini = mini_rag.cli:cli - Enable proper pip install -e . workflow Fixes broken global rag-mini command that failed due to hardcoded bash script paths. Users can now install globally with pip and use rag-mini from any directory.
61 lines
1.2 KiB
TOML
61 lines
1.2 KiB
TOML
[tool.isort]
|
|
profile = "black"
|
|
line_length = 95
|
|
multi_line_output = 3
|
|
include_trailing_comma = true
|
|
force_grid_wrap = 0
|
|
use_parentheses = true
|
|
ensure_newline_before_comments = true
|
|
src_paths = ["mini_rag", "tests", "examples", "scripts"]
|
|
known_first_party = ["mini_rag"]
|
|
sections = ["FUTURE", "STDLIB", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]
|
|
skip = [".venv", ".venv-linting", "__pycache__", ".git"]
|
|
skip_glob = ["*.egg-info/*", "build/*", "dist/*"]
|
|
|
|
[tool.black]
|
|
line-length = 95
|
|
target-version = ['py310']
|
|
include = '\.pyi?$'
|
|
extend-exclude = '''
|
|
/(
|
|
# directories
|
|
\.eggs
|
|
| \.git
|
|
| \.hg
|
|
| \.mypy_cache
|
|
| \.tox
|
|
| \.venv
|
|
| \.venv-linting
|
|
| _build
|
|
| buck-out
|
|
| build
|
|
| dist
|
|
)/
|
|
'''
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=61.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "mini-rag"
|
|
version = "2.1.0"
|
|
dependencies = [
|
|
"lancedb>=0.5.0",
|
|
"pandas>=2.0.0",
|
|
"numpy>=1.24.0",
|
|
"pyarrow>=14.0.0",
|
|
"watchdog>=3.0.0",
|
|
"requests>=2.28.0",
|
|
"click>=8.1.0",
|
|
"rich>=13.0.0",
|
|
"PyYAML>=6.0.0",
|
|
"rank-bm25>=0.2.2",
|
|
"psutil"
|
|
]
|
|
|
|
[project.scripts]
|
|
rag-mini = "mini_rag.cli:cli"
|
|
|
|
[tool.setuptools]
|
|
packages = ["mini_rag"] |