mirror of
https://github.com/novoid/date2name.git
synced 2026-02-16 12:54:15 +00:00
The previous setup defined by `pyproject.toml` required Python 3.11 as minimal version, hence excluding the installation of `date2name` with older editions of Python. Because the utility exclusively uses modules of Python's standard library (checked with `pipreqs`, version 0.4.13), the threshold was lowered to Python 3.9+ instead. Released on 2020-10-05, its end of support is scheduled for 2025-10.[1] In addition, a few internal date stamps were updated gently. [1] https://www.python.org/downloads/ Signed-off-by: Norwid Behrnd <nbehrnd@yahoo.com>
38 lines
1.1 KiB
TOML
38 lines
1.1 KiB
TOML
|
|
[project]
|
|
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]
|
|
name = "date2name"
|
|
version = "2024.04.25.1.309"
|
|
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"
|
|
|