summaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: 239ec77b7449697702b7ca0211e65f851979880b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[project]
name = "hashline-tools"
version = "1.0.0"
description = "CLI tools for Hashline algorithm"
requires-python = ">=3.13"
dependencies = ["xxhash"]

[project.scripts]
hlcat = "hashline_tools.hlcat:main"
hlgrep = "hashline_tools.hlgrep:main"
hlpatch = "hashline_tools.hlpatch:main"

[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"

[tool.setuptools.packages.find]
where = ["src"]