blob: 16acc7dcd064dbdec7619b12f815e9033a360c41 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
[project]
name = "hashline-tools"
version = "1.1.0"
description = "CLI tools for Hashline algorithm"
requires-python = ">=3.13"
dependencies = ["xxhash"]
authors = [
{name = "Simon Parri", email = "simonparri@ganzeria.com"},
]
license = "GPL-3.0-or-later"
[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"]
|