-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (43 loc) · 1 KB
/
pyproject.toml
File metadata and controls
49 lines (43 loc) · 1 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
[project]
name = "java-nav"
version = "0.1.0"
description = "CLI tools for IDE-like Java navigation in AI agents"
readme = "README.md"
license = { file = "LICENSE" }
authors = [
]
requires-python = ">=3.10"
dependencies = [
"click>=8.0",
"multilspy>=0.0.15",
]
[project.scripts]
java-nav = "java_nav.cli:main"
[build-system]
requires = ["uv_build>=0.10.7,<0.11.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"pytest>=9.0.2",
"ruff>=0.15.8",
]
[tool.ruff]
target-version = "py310"
line-length = 100
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"UP", # pyupgrade
"B", # flake8-bugbear
"SIM", # flake8-simplify
]
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = [
"integration: integration tests against real Java projects (need git submodule init + mvn compile)",
]
addopts = "-m 'not integration'"