This repository was archived by the owner on Apr 15, 2026. It is now read-only.
forked from blarApp/blarify
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
114 lines (102 loc) · 3.03 KB
/
Copy pathpyproject.toml
File metadata and controls
114 lines (102 loc) · 3.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
[tool.poetry]
name = "blarify"
version = "1.3.9"
description = "A simple graph builder based on LSP calls"
authors = ["Juan Vargas <juan@blar.io>", "Benjamín Errazuriz <benjamin@blar.io>"]
readme = "README.md"
homepage = "https://blar.io"
repository = "https://github.com/blarApp/blarify"
license = "MIT"
packages = [{include = "blarify"}, {include = "neo4j_container_manager"}]
[tool.poetry.scripts]
blarify = "blarify.cli.main:main"
blarify-mcp = "blarify.mcp_server:main"
[tool.poetry.dependencies]
python = ">=3.11,<=3.14"
asyncio = "^3.4.3"
websockets = "^15.0.1"
neo4j = "^5.25.0"
python-dotenv = "^1.0.1"
tree-sitter = "^0.23.2"
tree-sitter-python = "^0.23.2"
tree-sitter-ruby = "^0.23.0"
tree-sitter-javascript = "^0.23.0"
tree-sitter-typescript = "^0.23.2"
tree-sitter-c-sharp = "^0.23.1"
tree-sitter-go = "^0.23.4"
falkordb = "^1.0.10"
requests = "^2.32.3"
typing-extensions = "^4.12.2"
jedi-language-server = "^0.43.1"
psutil = "^7.0.0"
vendoring = "^1.2.0"
langchain-openai = "^0.3.28"
langchain-anthropic = "^0.3.17"
tree-sitter-php = "^0.23.11"
tree-sitter-java = "^0.23.5"
protobuf = "6.31.1"
json-repair = "^0.47.7"
langchain-google-genai = "^2.1.7"
docker = "^7.1.0"
filelock = "^3.16.1"
rich = "^14.1.0"
fastmcp = "^2.13.0"
langchain = "^1.0.3"
langgraph = "^1.0.2"
[tool.poetry.group.dev.dependencies]
pytest = "^8.4.1"
pytest-asyncio = "^0.25.0"
ruff = "^0.12.5"
pyright = "^1.1.350"
types-docker = "^7.1.0.20250705"
pytest-xdist = "^3.8.0"
numpy = "<2.0"
[tool.vendoring]
destination = "blarify/vendor"
namespace = "blarify.vendor"
requirements = "requirements-vendor.txt"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 120
[tool.codespell]
check-filenames = true
check-hidden = true
skip = "*.csv,*.html,*.json,*.jsonl,*.pdf,*.txt,*.ipynb"
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
asyncio_mode = "auto"
markers = [
"neo4j_unit: Unit tests for Neo4j container management",
"neo4j_integration: Integration tests requiring Docker",
"neo4j_performance: Performance tests for Neo4j operations",
"slow: Tests that take longer to run",
]
# Parallel execution configuration
# Note: Integration tests with Docker should run sequentially
# Use: pytest -n auto tests/unit for parallel unit tests
# Use: pytest tests/integration for sequential integration tests
addopts = [
# "--dist", "loadscope", # Group tests by module for better test isolation
]
# Test discovery
testpaths = ["tests"]
python_files = ["test_*.py", "*_test.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
[tool.pyright]
include = ["blarify", "tests", "neo4j_container_manager"]
exclude = ["**/node_modules", "**/__pycache__", "dist", "build", "blarify/vendor"]
typeCheckingMode = "strict"
reportMissingImports = "error"
reportMissingTypeStubs = false
reportMissingParameterType = true
reportMissingReturnType = true
reportUnknownVariableType = false
reportUnknownMemberType = false
reportUnknownArgumentType = false
reportUnknownParameterType = false
pythonVersion = "3.12"
pythonPlatform = "Linux"