24 lines
531 B
TOML
24 lines
531 B
TOML
[project]
|
|
name = "hashtool"
|
|
version = "0.1.0"
|
|
description = "A short description of hashtool"
|
|
authors = [
|
|
{name = "Alexander Rossmanith", email = "hashtool@alexander-rossmanith.de"}
|
|
]
|
|
readme = "README.md"
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"python-docx (>=1.2.0,<2.0.0)"
|
|
]
|
|
|
|
[tool.poetry]
|
|
package-mode = false
|
|
packages = [{include = "hashtool", from = "src"}]
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
flake8 = "^7.3.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|