14 lines
321 B
TOML
14 lines
321 B
TOML
[project]
|
|
name = "dumpy"
|
|
version = "0.1.1"
|
|
description = "Used for dumping directories into the command prompt in a way that LLMs will understand"
|
|
readme = "README.md"
|
|
requires-python = ">=3.14"
|
|
dependencies = [
|
|
"pathspec>=1.0.3",
|
|
"pyperclip>=1.11.0",
|
|
"rich>=14.3.1",
|
|
]
|
|
|
|
[project.scripts]
|
|
dumpy = "dumpy:main" |