-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (33 loc) · 999 Bytes
/
Copy pathpyproject.toml
File metadata and controls
39 lines (33 loc) · 999 Bytes
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
[build-system]
requires = ["hatchling>=1.21"]
build-backend = "hatchling.build"
[project]
name = "codemap-java"
version = "0.4.5"
description = "Java indexer plugin for CodeMap"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [{ name = "CodeMap Contributors" }]
keywords = ["codemap", "java", "indexer", "tree-sitter"]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: Java",
"Topic :: Software Development",
]
dependencies = [
"codemap-core>=0.3.0,<0.4",
"tree-sitter>=0.25",
"tree-sitter-java>=0.23",
]
[project.optional-dependencies]
dev = ["pytest>=8.0"]
[project.entry-points."codemap.indexers"]
java = "codemap_java:JavaIndexer"
[project.entry-points."codemap.bridges"]
java_calls = "codemap_java.resolver:JavaCallResolverBridge"
[project.urls]
Homepage = "https://github.com/qxbyte/codemap"
[tool.hatch.build.targets.wheel]
packages = ["src/codemap_java"]