/
dictator
/
ragflow_sync
Обзор
Документация
Войти
/
dictator
/
ragflow_sync
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
master
pyproject.toml
53 строки
1 KB
Developer
refactor: rename ttjson_to_markdown → ttjson2md
22 июн 2026, 14:00
22 июн 2026, 14:00
babc303
Код
Авторство
О чём код?
[project] name = "ragflow-sync" version = "0.1.0" description = "Modular CLI tool for syncing external data sources (Confluence, TaskTracker) to RAGFlow knowledge bases" readme = "README.md" requires-python = ">=3.12" license = {text = "Apache-2.0"} dependencies = [ "httpx>=0.25.0", "python-dotenv>=1.0.0", "requests>=2.31.0", "mcp>=0.9.0", ] [project.scripts] ragflow-sync = "ragflow_sync_cli.main:main" ragflow-uploader = "ragflow_uploader.__main__:main" tt-retriever = "tt_retriever.__main__:main" jira-confluence-retriever = "jira_confluence_retriever.__main__:main" ttjson2md = "ttjson2md.cli:main" ragflow-chat = "ragflow_chat.__main__:main" [dependency-groups] dev = [ "pytest>=7.0.0", "pytest-cov>=4.0.0", "ruff>=0.1.0", ] [tool.ruff] target-version = "py312" line-length = 100 [tool.ruff.lint] select = ["E", "F", "I", "N", "W", "UP"] [tool.pytest.ini_options] testpaths = ["tests"] python_files = ["test_*.py"] [build-system] requires = ["hatchling"] build-backend = "hatchling.build" [tool.hatch.build.targets.wheel] packages = [ "ragflow_uploader", "tt_retriever", "jira_confluence_retriever", "ttjson2md", "ragflow_sync_cli", "ragflow_chat", ]