wip
This commit is contained in:
parent
90491d17bf
commit
a60562b7fc
18 changed files with 1683 additions and 1 deletions
54
pyproject.toml
Normal file
54
pyproject.toml
Normal file
|
|
@ -0,0 +1,54 @@
|
|||
[build-system]
|
||||
requires = ["hatchling"]
|
||||
build-backend = "hatchling.build"
|
||||
|
||||
[tool.hatch.build.targets.wheel]
|
||||
|
||||
[tool.hatch.build.targets.sdist]
|
||||
exclude = ["/.github"]
|
||||
|
||||
[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",
|
||||
"jinja2",
|
||||
"iterfzf",
|
||||
]
|
||||
|
||||
[[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"
|
||||
Loading…
Add table
Add a link
Reference in a new issue