appendfilename/pyproject.toml
Norwid Behrnd abd9bbfa90 docs: update READMEs
PyPI accepts READMEs only in the file format of GitHub flavored
Markdown .md, or reStructured text, .rst.  With Pandoc, the
updated .org file is translated into the former syntax.

Signed-off-by: Norwid Behrnd <nbehrnd@yahoo.com>
2025-05-07 18:05:50 +02:00

52 lines
1.2 KiB
TOML

[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "appendfilename"
version = "2025.5.7"
description = "Intelligent appending text to file names, considering file extensions and file tags"
# readme = "README.org"
readme = "README.md"
requires-python = ">=3.9"
license = {file = "license.txt"}
authors = [
{name="Karl Voit", email="tools@Karl-Voit.at"},
]
keywords = [
"file managing",
"file management",
"files",
"name",
"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 v3 (GPLv3)",
"Operating System :: OS Independent",
]
dependencies = [
"pyreadline3"
]
[project.optional-dependencies]
dev = [
"build",
"pytest",
]
[project.urls]
Homepage = "https://github.com/novoid/appendfilename"
Repository = "https://github.com/novoid/appendfilename"
Issues = "https://github.com/novoid/appendfilename/issues"
[project.scripts]
appendfilename = "appendfilename:main"
[tools.setuptools.packages.find]
where = ["."]