-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (29 loc) · 752 Bytes
/
Copy pathpyproject.toml
File metadata and controls
34 lines (29 loc) · 752 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
[project]
name = "commit-explorer"
version = "0.2.2"
description = "CLI and TUI for exploring remote git history; agent-friendly output with editor skill integration"
requires-python = ">=3.11"
dependencies = [
"textual>=0.70.0",
"python-dotenv>=1.0.0",
"dulwich>=0.21.0",
"urllib3>=2.0.0",
]
[project.scripts]
commit-explorer = "commit_explorer.cli:main"
cex = "commit_explorer.cli:main"
[dependency-groups]
dev = [
"pytest>=8.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-ra"
markers = [
"network: tests that clone locchh/commit-explorer over the network",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/commit_explorer"]