chkbit/pyproject.toml

23 lines
479 B
TOML
Raw Normal View History

2023-12-19 23:49:52 +01:00
[project]
name = "chkbit"
2023-12-22 20:25:14 +01:00
version = "3.0.1"
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"},
]
2023-12-20 00:09:50 +01:00
dependencies = [
"blake3>=0.3.4",
]
2023-12-19 23:49:52 +01:00
requires-python = ">=3.6.0"
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"]