33 lines
639 B
TOML
33 lines
639 B
TOML
[project]
|
|
name = "workspaces"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
authors = [
|
|
{ name = "Waylon S. Walker", email = "waylon@waylonwalker.com" }
|
|
]
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"iterfzf>=1.8.0.62.0",
|
|
"pydantic>=2.12.5",
|
|
"pydantic-settings>=2.12.0",
|
|
"rich>=14.2.0",
|
|
"typer>=0.20.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
workspaces = "workspaces:main"
|
|
|
|
[build-system]
|
|
requires = ["uv_build>=0.9.7,<0.10.0"]
|
|
build-backend = "uv_build"
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"ipython>=9.7.0",
|
|
"ruff>=0.14.6",
|
|
"ty>=0.0.1a28",
|
|
]
|
|
|
|
[tool.ruff.lint.isort]
|
|
force-single-line = true
|