69 lines
1.6 KiB
TOML
69 lines
1.6 KiB
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
|
|
[tool.hatch.build.targets.sdist]
|
|
exclude = ["/.github"]
|
|
|
|
[tool.hatch.build.targets.binary]
|
|
|
|
[project]
|
|
name = "krayt"
|
|
dynamic = ["version"]
|
|
description = 'kubernetes volume explorer'
|
|
readme = "README.md"
|
|
requires-python = ">=3.8"
|
|
keywords = []
|
|
classifiers = [
|
|
"Development Status :: 4 - Beta",
|
|
"Programming Language :: Python",
|
|
"Programming Language :: Python :: 3.8",
|
|
"Programming Language :: Python :: 3.9",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Programming Language :: Python :: Implementation :: CPython",
|
|
"Programming Language :: Python :: Implementation :: PyPy",
|
|
]
|
|
dependencies = [
|
|
"typer",
|
|
"kubernetes",
|
|
"inquirerPy",
|
|
"inquirer",
|
|
"jinja2",
|
|
"iterfzf",
|
|
"pydantic",
|
|
]
|
|
|
|
[[project.authors]]
|
|
name = "Waylon Walker"
|
|
email = "waylon@waylonwalker.com"
|
|
|
|
[project.license]
|
|
file = "LICENSE"
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/waylonwalker/krayt#readme"
|
|
Documentation = "https://github.com/waylonwalker/krayt#readme"
|
|
Changelog = "https://github.com/waylonwalker/krayt#changelog"
|
|
Issues = "https://github.com/waylonwalker/krayt/issues"
|
|
Source = "https://github.com/waylonwalker/krayt"
|
|
|
|
[tool.hatch.version]
|
|
path = "krayt/__about__.py"
|
|
|
|
[project.scripts]
|
|
krayt = "krayt.cli:app"
|
|
|
|
[tool.hatch.envs.default]
|
|
dependencies = [
|
|
"ruff",
|
|
"pyinstrument",
|
|
]
|
|
|
|
[tool.hatch.envs.default.scripts]
|
|
lint = "ruff check krayt"
|
|
format = "ruff format krayt"
|
|
lint-format = ['lint', 'format']
|