-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (65 loc) · 1.9 KB
/
pyproject.toml
File metadata and controls
74 lines (65 loc) · 1.9 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "vortexa"
version = "0.1.2"
description = "Codebase indexing and semantic search engine"
readme = "README.md"
requires-python = ">=3.10"
license = "Apache-2.0"
authors = [
{name = "VortexAI", email = "koulabhay25@gmail.com"}
]
keywords = ["codebase", "indexing", "search", "embedding", "semantic-search"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"numpy>=1.24.0",
"lmdb>=1.4.0",
"bm25s>=0.2.0",
"pathspec>=0.12.0",
"huggingface-hub>=0.20.0",
"tokenizers>=0.19.0",
"safetensors>=0.4.0",
]
[project.optional-dependencies]
full = [
"model2vec>=0.3.0",
"sentence-transformers>=2.2.0",
"tree-sitter-language-pack>=0.1.0",
]
mcp = [
"fastmcp>=2.0.0",
]
[project.scripts]
vortexa = "vortexa.interfaces.mcp_server:run_server"
[project.urls]
Homepage = "https://github.com/OEvortex/vortexa"
Repository = "https://github.com/OEvortex/vortexa"
Issues = "https://github.com/OEvortex/vortexa/issues"
[tool.setuptools.packages.find]
where = ["src"]
include = ["vortexa*"]
[tool.ruff]
line-length = 100
target-version = "py310"
exclude = [".git", ".venv", "__pycache__", "build", "dist"]
[tool.ruff.lint]
select = ["E", "W", "F", "I", "B", "C4", "UP"]
ignore = ["E501", "B008"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]