date2name/pyproject.toml
Norwid Behrnd d53e71a126 build(pyproject.toml): correct omission of name
The creation of a Python wheel with `python -m build` was
impossible because the project section previously omitted
the `name` parameter.

Signed-off-by: Norwid Behrnd <nbehrnd@yahoo.com>
2025-03-24 08:25:52 +01:00

42 lines
1.1 KiB
TOML

[project]
name = "date2name"
readme = "README.org"
keywords = ["file managing", "file management", "files", "date", "time", "time-stamps"]
classifiers=[
"Programming Language :: Python :: 3 :: Only",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent",
]
authors = [{name="Karl Voit", email="tools@Karl-Voit.at"}]
license = {file = "LICENSE.txt"}
[project.urls]
Homepage = "https://github.com/novoid/date2name"
Repository = "https://github.com/novoid/date2name"
Issues = "https://github.com/novoid/date2name/issues"
[project.scripts]
date2name="date2name:main"
[tool.poetry.scripts]
date2name="date2name:main"
[tool.poetry]
name = "date2name"
version = "2024.04.26.1"
description = "Handling time-stamps and date-stamps in file names"
authors = ["Karl Voit <tools@Karl-Voit.at>"]
license = "GPL v3"
readme = "README.org"
[tool.poetry.dependencies]
python = "^3.9"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"