32 lines
482 B
TOML
32 lines
482 B
TOML
[build-system]
|
|
requires = ["hatchling >= 1.26"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "zshell"
|
|
requires-python = ">=3.13"
|
|
version = "0.1.0"
|
|
dependencies = [
|
|
"typer",
|
|
"pillow",
|
|
"materialyoucolor"
|
|
]
|
|
|
|
[project.scripts]
|
|
zshell-cli = "zshell:main"
|
|
|
|
[tool.hatch.version]
|
|
source = "vcs"
|
|
|
|
[tool.hatch.build.targets.sdist]
|
|
only-include = [
|
|
"src",
|
|
]
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["zshell"]
|
|
include = ["src/zshell/assets/**/*"]
|
|
|
|
[tool.ruff]
|
|
line-length = 120
|