- Add Node.js test suite with 36 tests covering package structure, imports, and integration - Add Python test suite with 44 tests covering package structure, imports, and validation - Add comprehensive README with merged Quick Start section and troubleshooting - Add practical examples for Node.js, Python, and TypeScript/Next.js usage - Add automated CI test harness with cross-platform validation - Update typst-test.js to use new templates package 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
25 lines
465 B
TOML
25 lines
465 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "soroban-templates"
|
|
version = "0.1.0"
|
|
description = "Shared Typst templates for Soroban flashcard generation"
|
|
dependencies = []
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=7.0.0",
|
|
]
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["."]
|
|
include = ["*.typ"]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
|
|
# For uv workspace
|
|
[tool.uv.workspace]
|
|
members = ["../core"] |