[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"