diff --git a/poetry.lock b/poetry.lock new file mode 100644 index 0000000..a4abe38 --- /dev/null +++ b/poetry.lock @@ -0,0 +1,7 @@ +# This file is automatically @generated by Poetry and should not be changed by hand. +package = [] + +[metadata] +lock-version = "2.0" +python-versions = "^3.11" +content-hash = "81b2fa642d7f2d1219cf80112ace12d689d053d81be7f7addb98144d56fc0fb2" diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..bb3cc5d --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,38 @@ + +[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.03.10.1" +description = "Handling time-stamps and date-stamps in file names" +authors = ["Karl Voit "] +license = "GPL v3" +readme = "README.org" + +[tool.poetry.dependencies] +python = "^3.11" + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" +