chkbit/pyproject.toml

25 lines
508 B
TOML
Raw Normal View History

2023-12-19 23:49:52 +01:00
[project]
name = "chkbit"
2024-06-27 23:00:16 +02:00
version = "4.2.0"
2023-12-19 23:49:52 +01:00
description = "chkbit checks the data integrity of your files"
authors = [
{name = "Christian Zangl", email = "laktak@cdak.net"},
]
2024-01-12 22:33:59 +01:00
# keep in sync with Pipfile
2023-12-20 00:09:50 +01:00
dependencies = [
2024-06-27 23:00:16 +02:00
"blake3>=0.4.1",
2023-12-20 00:09:50 +01:00
]
requires-python = ">=3.7.0"
2023-12-19 23:49:52 +01:00
readme = "README.md"
license = {file = "LICENSE"}
[project.urls]
Homepage = "https://github.com/laktak/chkbit-py"
[project.scripts]
2023-12-22 20:55:56 +01:00
chkbit = "chkbit_cli.main:main"
2023-12-21 19:29:27 +01:00
[tool.setuptools.packages.find]
2023-12-22 20:55:56 +01:00
include = ["chkbit","chkbit_cli"]