23 lines
452 B
TOML
23 lines
452 B
TOML
[build-system]
|
|
requires = ["setuptools>=61", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "diffseeker"
|
|
version = "0.1.0"
|
|
description = "Cross-volume file scanning and matching by hash+size"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"docopt>=0.6.2",
|
|
]
|
|
|
|
[project.scripts]
|
|
mpchunkcfa = "diffseeker.cli_mpchunkcfa:main"
|
|
|
|
[tool.setuptools]
|
|
package-dir = {"" = "python/src"}
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["python/src"]
|
|
|