20 lines
371 B
TOML
20 lines
371 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "myclaude"
|
|
version = "0.1.0"
|
|
description = "CLI tool to manage Claude skills across projects"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"gitpython>=3.1",
|
|
"typer>=0.12",
|
|
]
|
|
|
|
[project.scripts]
|
|
myclaude = "myclaude.cli:app"
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|