31 lines
795 B
TOML
31 lines
795 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "redfish_cli"
|
|
version = "0.0.1"
|
|
authors = [
|
|
{ name="Neill Cox", email="neill@ingenious.com.au" },
|
|
]
|
|
description = "A set of command line scripts for interacting with servers via Redfish"
|
|
readme = "README.md"
|
|
requires-python = ">=3.8"
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
]
|
|
dependencies = [
|
|
"requests",
|
|
"tabulate"
|
|
]
|
|
|
|
[project.urls]
|
|
"Homepage" = "https://gitlab.com/neillc/redfish_cli"
|
|
"Bug Tracker" = "https://gitlab.com/neillc/redfish_cli/issues"
|
|
|
|
[project.scripts]
|
|
# version = "redfish_cli.redfish:redfish_version"
|
|
rf_get = "redfish_cli.cli:get"
|
|
redfish = "redfish_cli.cli:redfish"
|