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