32 lines
621 B
TOML
32 lines
621 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.metadata]
|
|
allow-direct-references = true
|
|
|
|
[project]
|
|
name = "lscolors"
|
|
version = "v2025.06.04"
|
|
description = "Give coloring for file types as in the ls command."
|
|
authors = [
|
|
{ name = "Andrew Hamilton", email = "and_hamilton@yahoo.com" },
|
|
]
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"termstr",
|
|
]
|
|
|
|
[tool.uv.sources]
|
|
termstr = { workspace = true }
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/ahamilton/eris"
|
|
|
|
[tool.hatch.version]
|
|
path = "lscolors/__init__.py"
|
|
|
|
[tool.hatch.build.targets.sdist]
|
|
include = [
|
|
"/lscolors",
|
|
]
|