First version. I can init

This commit is contained in:
2026-04-13 22:04:05 +02:00
commit 40ea9d5c1f
18 changed files with 713 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
[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"]