fixed pyproject.toml format errors

This commit is contained in:
Karl Voit 2025-05-19 09:48:12 +02:00
parent 8b43e8691d
commit eeaff91055

View file

@ -1,25 +1,21 @@
[build-system] [build-system]
requires = ["setuptools>=42", "wheel"] requires = ["poetry-core>=1.0.0"]
build-backend = "setuptools.build_meta" build-backend = "poetry.core.masonry.api"
[project] [tool.poetry]
name = "appendfilename" name = "appendfilename"
version = "2025.5.14" version = "2025.5.14"
description = "Intelligent appending text to file names, considering file extensions and file tags" description = "Intelligent appending text to file names, considering file extensions and file tags"
# readme = "README.org"
readme = "README.md" readme = "README.md"
requires-python = ">=3.9" license = "GPL-3.0-or-later"
license = {file = "license.txt"} authors = ["Karl Voit <tools@Karl-Voit.at>"]
authors = [
{name="Karl Voit", email="tools@Karl-Voit.at"},
]
keywords = [ keywords = [
"file managing", "file managing",
"file management", "file management",
"files", "files",
"name", "name",
"time", "time",
"time-stamps", "time-stamps"
] ]
classifiers = [ classifiers = [
"Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3 :: Only",
@ -27,26 +23,17 @@ classifiers = [
"Environment :: Console", "Environment :: Console",
"Intended Audience :: End Users/Desktop", "Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)", "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent", "Operating System :: OS Independent"
]
dependencies = [
"pyreadline3"
] ]
[project.optional-dependencies] [tool.poetry.dependencies]
dev = [ python = ">=3.9"
"build", pyreadline3 = "*"
"pytest",
]
[project.urls] [tool.poetry.dev-dependencies]
Homepage = "https://github.com/novoid/appendfilename" build = "*"
Repository = "https://github.com/novoid/appendfilename" pytest = "*"
Issues = "https://github.com/novoid/appendfilename/issues"
[project.scripts] [tool.poetry.scripts]
appendfilename = "appendfilename:main" appendfilename = "appendfilename:main"
[tools.setuptools.packages.find]
where = ["."]