27 lines
470 B
TOML
27 lines
470 B
TOML
[project]
|
|
name = "jeaddons"
|
|
version = "0.1.1"
|
|
description = "CLI to copy files or folders from a git repo into your current project"
|
|
readme = "README.md"
|
|
requires-python = ">=3.14"
|
|
dependencies = [
|
|
"typer>=0.23.0",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["jeAddons"]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"ruff>=0.15.0",
|
|
"twine>=6.2.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
jpm = "jeAddons.cli:app"
|
|
|