- Update version to 0.0.3 in all components - Python packages: memora, memora-dev, memora-dev/benchmarks - Rust CLI: memora-cli - Control Plane: memora-control-plane - Helm chart
21 lines
431 B
TOML
21 lines
431 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "memora-dev"
|
|
version = "0.0.3"
|
|
description = "Development utilities for Memora"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"memora",
|
|
]
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["memora_dev"]
|
|
|
|
[tool.uv.sources]
|
|
memora = { workspace = true }
|
|
|
|
[project.scripts]
|
|
generate-openapi = "memora_dev.generate_openapi:generate_openapi_spec"
|