-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (33 loc) · 843 Bytes
/
pyproject.toml
File metadata and controls
41 lines (33 loc) · 843 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
35
36
37
38
39
40
41
[project]
name = "diffuser-cli"
dynamic = ["version"]
description = "CriticMarkup viewer for the terminal"
readme = "README.md"
authors = [
{ name = "shakedlokits", email = "shakedl@salt.security" }
]
requires-python = ">=3.11"
license = "GPL-3.0-or-later"
dependencies = [
"rich>=14.3.3",
"typer>=0.24.1",
]
[project.scripts]
diffuser = "diffuser:main"
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "src/diffuser/_version.py"
[tool.hatch.build.targets.wheel]
packages = ["src/diffuser"]
[tool.hatch.build.targets.wheel.force-include]
"skills/diffuser/SKILL.md" = "diffuser/SKILL.md"
[tool.hatch.build.targets.sdist.force-include]
"skills" = "skills"
[dependency-groups]
dev = [
"pytest>=9.0.2",
]