-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (43 loc) · 1.01 KB
/
Copy pathpyproject.toml
File metadata and controls
47 lines (43 loc) · 1.01 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
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "flowmap"
version = "0.2.0"
description = "Cross-repo code intelligence CLI for LLMs"
license = { text = "MIT" }
authors = [{ name = "Aniket Sinha" }]
requires-python = ">=3.11"
dependencies = [
"click>=8.0",
"lancedb>=0.20",
"pyarrow>=14",
"pathspec>=0.12",
"tqdm>=4.60",
"pyyaml>=6.0",
"requests>=2.28",
"tree-sitter-yaml>=0.7.2",
"tree-sitter>=0.25.2",
"tree-sitter-python>=0.25.0",
"tree-sitter-javascript>=0.25.0",
"tree-sitter-typescript>=0.23.2",
"tree-sitter-go>=0.25.0",
"tree-sitter-java>=0.23.5",
"tree-sitter-json>=0.24.8",
"tree-sitter-swift>=0.0.1",
"tree-sitter-rust>=0.24.2",
]
[project.optional-dependencies]
local-embeddings = [
"sentence-transformers>=3.0",
"torch>=2.0",
]
dev = [
"pytest>=8.0",
"ruff>=0.4",
]
[project.scripts]
flowmap = "flowmap.cli:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["flowmap*"]