refactor: Migrate CLI and API components to use castle-core for configuration and manifest handling
This commit is contained in:
25
core/pyproject.toml
Normal file
25
core/pyproject.toml
Normal file
@@ -0,0 +1,25 @@
|
||||
[project]
|
||||
name = "castle-core"
|
||||
version = "0.1.0"
|
||||
description = "Castle platform core library - manifest models, config, and generators"
|
||||
requires-python = ">=3.11"
|
||||
dependencies = [
|
||||
"pyyaml>=6.0.0",
|
||||
"pydantic>=2.0.0",
|
||||
]
|
||||
|
||||
[build-system]
|
||||
requires = ["hatchling"]
|
||||
build-backend = "hatchling.build"
|
||||
|
||||
[tool.hatch.build.targets.wheel]
|
||||
packages = ["src/castle_core"]
|
||||
|
||||
[dependency-groups]
|
||||
dev = [
|
||||
"pytest>=7.0.0",
|
||||
"pyyaml>=6.0.0",
|
||||
]
|
||||
|
||||
[tool.ruff.lint.isort]
|
||||
known-first-party = ["castle_core"]
|
||||
Reference in New Issue
Block a user