-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathpyproject.toml
More file actions
146 lines (128 loc) · 3.6 KB
/
pyproject.toml
File metadata and controls
146 lines (128 loc) · 3.6 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "semble"
description = "Fast and Accurate Code Search for Agents"
authors = [{name = "Thomas van Dongen", email = "thomas123@live.nl"}, { name = "Stéphan Tulkens", email = "stephantul@gmail.com"}]
readme = { file = "README.md", content-type = "text/markdown" }
dynamic = ["version"]
license = { file = "LICENSE" }
requires-python = ">=3.10"
keywords = ["code-search", "hybrid-search", "semantic-search", "mcp", "agent", "rag", "embeddings"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Natural Language :: English",
]
dependencies = [
"model2vec>=0.4.0",
"vicinity>=0.4.4",
"numpy>=1.24.0",
"bm25s>=0.2.0",
"pathspec>=0.12",
"tree-sitter>=0.25",
"tree-sitter-language-pack>=1.0,<1.8.0,!=1.6.3"
]
[project.optional-dependencies]
mcp = [
"mcp>=1.0,<2.0",
"watchfiles>=0.21",
]
benchmark = [
"sentence-transformers>=3.0",
"numpy>=1.24.0",
"einops>=0.8.2",
"matplotlib>=3.7",
"tiktoken>=0.7",
"openai>=1.50",
]
dev = [
"pytest>=8.0",
"pytest-cov>=5.0",
"ruff>=0.9.0",
"mypy>=1.0",
"pydoclint>=0.5.3",
"pre-commit>=3.0",
]
[project.urls]
"Homepage" = "https://github.com/MinishLab/semble"
"Bug Reports" = "https://github.com/MinishLab/semble/issues"
"Source" = "https://github.com/MinishLab/semble"
[project.scripts]
semble = "semble.cli:main"
[tool.setuptools]
package-dir = {"" = "src"}
license-files = ["LICENSE*"]
[tool.setuptools.packages.find]
where = ["src"]
include = ["semble*"]
[tool.setuptools.package-data]
semble = ["py.typed", "agents/*.md"]
[tool.setuptools_scm]
# can be empty if no extra settings are needed, presence enables setuptools_scm
[tool.setuptools.dynamic]
version = {attr = "semble.version.__version__"}
[tool.ruff]
exclude = [".venv/"]
line-length = 120
target-version = "py310"
[tool.ruff.lint.per-file-ignores]
"tests/**" = ["ANN"]
"benchmarks/*.py" = ["T20"]
"src/semble/cli.py" = ["T20", "E501"]
[tool.ruff.lint]
select = [
# Annotations: Enforce type annotations
"ANN",
# Complexity: Enforce a maximum cyclomatic complexity
"C90",
# Pydocstyle: Enforce docstrings
"D",
# Pycodestyle errors
"E",
# Remove unused imports
"F",
# Isort: Enforce import order
"I",
# Numpy: Enforce numpy style
"NPY",
# Print: Forbid print statements
"T20",
]
ignore = [
# Allow Any type
"ANN401",
# Pydocstyle ignores
"D100", "D101", "D104", "D203", "D213", "D401",
]
[tool.pydoclint]
style = "sphinx"
exclude = "test_"
allow-init-docstring = true
arg-type-hints-in-docstring = false
check-return-types = false
require-return-section-when-returning-nothing = false
[tool.mypy]
python_version = "3.10"
warn_unused_configs = true
ignore_missing_imports = true
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = ["--tb=short", "--strict-markers", "--cov=semble", "--cov-report=term-missing"]
[tool.coverage.run]
relative_files = true
[tool.coverage.report]
skip_covered = true
exclude_also = ["if __name__ == .__main__.:", "@abstractmethod"]
[tool.uv]
exclude-newer = "1 week"