-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (50 loc) · 1.13 KB
/
pyproject.toml
File metadata and controls
54 lines (50 loc) · 1.13 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
[project]
name = "code-explorer"
version = "0.1.0"
description = "Python dependency analysis tool with fine-grained impact tracking"
readme = "README.md"
authors = [
{ name = "Thomas PEDOT", email = "[email protected]" }
]
requires-python = ">=3.12"
dependencies = [
"click>=8.0",
"rich>=13.0",
"astroid>=3.0",
"kuzu==0.11.2",
"pandas>=2.0",
"memray>=1.19.1",
"codetiming>=1.4.0",
"pyarrow>=21.0.0",
"polars>=1.34.0",
"psutil>=7.1.0",
"ruff>=0.14.1",
"tree-sitter>=0.25.2",
"tree-sitter-languages>=1.10.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-cov>=4.0",
"pytest-benchmark>=4.0",
]
perf = [
"faker>=20.0",
"polars>=0.19.0",
]
[project.scripts]
code-explorer = "code_explorer:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "-v --tb=short --strict-markers"
markers = [
"unit: Unit tests",
"integration: Integration tests",
"performance: Performance tests",
]