-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
41 lines (33 loc) · 1.1 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[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.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"