-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (37 loc) · 1.12 KB
/
pyproject.toml
File metadata and controls
41 lines (37 loc) · 1.12 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
[build-system]
requires = ["maturin>=1.7,<2.0"]
build-backend = "maturin"
[project]
name = "openace"
version = "0.1.6"
description = "AI-native Contextual Code Engine"
requires-python = ">=3.10"
license = { text = "MIT" }
readme = "README.md"
keywords = ["code-intelligence", "code-search", "mcp", "tree-sitter"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Rust",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"click>=8.0",
"mcp>=1.0",
"openai>=1.0",
"numpy>=1.24",
"structlog>=24.1.0",
]
[project.optional-dependencies]
onnx = ["onnxruntime>=1.16", "tokenizers>=0.15"]
rerank-local = ["onnxruntime>=1.16", "tokenizers>=0.15", "huggingface_hub>=0.20"]
rerank-cohere = ["cohere>=5.0"]
dev = ["pytest>=7.0", "pytest-asyncio>=0.21"]
eval = ["datasets>=2.0", "anthropic>=0.30", "pyyaml>=6.0", "mini-swe-agent>=2.2"]
[project.scripts]
openace = "openace.cli:main"
[tool.maturin]
module-name = "openace._openace"
python-source = "python"
manifest-path = "crates/oc-python/Cargo.toml"
features = ["pyo3/extension-module"]