27 lines
490 B
TOML
27 lines
490 B
TOML
[project]
|
|
name = "inspector"
|
|
version = "0.1.5"
|
|
description = "System inspection routine."
|
|
authors = [
|
|
{ name = "Sean Wilbur", email = "sean@abutili.com" }
|
|
]
|
|
dependencies = [
|
|
"ansible>2.19",
|
|
]
|
|
readme = "README.md"
|
|
requires-python = ">= 3.12"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.rye]
|
|
managed = true
|
|
dev-dependencies = []
|
|
|
|
[tool.hatch.metadata]
|
|
allow-direct-references = true
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/inspector"]
|