Initial commit

This commit is contained in:
Neill Cox 2023-09-11 20:22:22 +10:00
commit 1b51716d1b
72 changed files with 8204 additions and 0 deletions

31
pyproject.toml Normal file
View file

@ -0,0 +1,31 @@
[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"