- Add GitHub Actions workflow with matrix testing (Node.js 18/20, Python 3.8-3.11) - Include integration tests, package validation, and lint checks - Add monorepo Python configuration with uv workspace support - Add root-level integration test script for debugging 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
19 lines
342 B
TOML
19 lines
342 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "soroban-monorepo"
|
|
version = "1.0.0"
|
|
description = "Soroban flashcard generator monorepo"
|
|
dependencies = []
|
|
|
|
# uv workspace configuration
|
|
[tool.uv]
|
|
dev-dependencies = []
|
|
|
|
[tool.uv.workspace]
|
|
members = [
|
|
"packages/core",
|
|
"packages/templates"
|
|
] |