forked from cyrus-and/gdb-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (40 loc) · 964 Bytes
/
pyproject.toml
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
[project]
name = "gdb-dashboard"
version = "0.17.4+fork"
description = "A refactored fork of gdb-dashboard"
authors = [
{ name = "Andrea Cardaci", email = "cyrus.and@gmail.com" },
{ name = "Eric Johnson", email = "eric.j.johnson22@gmail.com" },
]
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
dependencies = [
"pydantic>=2.10.6",
]
[project.urls]
homepage = "https://github.com/ejohnso49/gdb-dashboard"
source = "https://github.com/ejohnso49/gdb-dashboard"
[project.optional-dependencies]
optional = [
"pygments>=2.19.1",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"gdbundle",
"mypy>=1.15.0",
"pytest>=8.3.4",
"pytest-mock>=3.14.0",
"ruff>=0.9.6",
"types-gdb>=15.0.0.20241204",
]
[tool.hatch.build.targets]
include = [
"gdb_dashboard/*.py",
"scripts/*.gdb",
]
[tool.uv.sources]
gdbundle = { path = "../gdbundle", editable = true }