sky-lattice/pyproject.toml

32 lines
700 B
TOML
Raw Permalink Normal View History

[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "skylattice"
version = "0.1.0"
description = "Sky Lattice — intent + decisions + Terraform blueprint toolkit for Snowflake platforms"
readme = "README.md"
requires-python = ">=3.10"
authors = [{ name = "Sky Lattice" }]
dependencies = [
"typer>=0.12",
"rich>=13.0",
"pyyaml>=6.0",
"jsonschema>=4.20",
"python-dateutil>=2.8",
]
[project.optional-dependencies]
dev = ["pytest>=8.0"]
[project.scripts]
platformctl = "skylattice.cli:app"
skylattice = "skylattice.cli:app"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
skylattice = ["py.typed"]