-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (78 loc) · 2 KB
/
Copy pathpyproject.toml
File metadata and controls
84 lines (78 loc) · 2 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[project]
name = "dhv"
version = "0.4.1"
description = "A tool to dive into Python code"
authors = [
{ name = "Dave Pearson", email = "davep@davep.org" }
]
dependencies = [
"textual[syntax]>=3.7.0",
"textual-enhanced>=0.13.0",
"textual-fspicker>=0.4.1",
"xdg-base-dirs>=6.0.2",
"tree-sitter<0.25.0",
]
readme = "README.md"
requires-python = ">= 3.13"
license = "GPL-3.0-or-later"
keywords = [
"terminal",
"tui",
"chui",
"documentation",
"python",
"bytecode",
"disassembly",
"disassembler",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Documentation",
"Topic :: Education",
"Topic :: Software Development :: Disassemblers",
"Topic :: Software Development :: Documentation",
"Topic :: Software Development",
"Topic :: Terminals",
"Topic :: Utilities",
"Typing :: Typed",
]
[project.urls]
Homepage = "https://dhv.davep.dev/"
Repository = "https://github.com/davep/dhv"
Documentation = "https://dhv.davep.dev/"
Source = "https://github.com/davep/dhv"
Issues = "https://github.com/davep/dhv/issues"
Discussions = "https://github.com/davep/dhv/discussions"
[project.scripts]
dhv = "dhv.__main__:main"
[build-system]
requires = ["uv_build>=0.8.11,<0.9.0"]
build-backend = "uv_build"
[tool.uv]
managed = true
dev-dependencies = [
"pre-commit>=4.2.0",
"mypy>=1.16.1",
"textual-dev>=1.7.0",
"codespell>=2.4.1",
"mkdocs-material>=9.6.15",
"markdown-exec>=1.11.0",
"ruff>=0.12.9",
]
[[tool.uv.index]]
name = "testpypi"
url = "https://test.pypi.org/simple/"
publish-url = "https://test.pypi.org/legacy/"
explicit = true
[tool.pyright]
venvPath="."
venv=".venv"
exclude=[".venv"]