mirror of
https://github.com/novoid/filetags.git
synced 2026-02-16 05:54:16 +00:00
The constraint regarding the Python interpreter was softened. An installation in Windows now automatically collects and installs pypiwin32, too. For now, inclusion of file README.org into the wheel is blocked. Signed-off-by: Norwid Behrnd <nbehrnd@yahoo.com>
32 lines
1.1 KiB
TOML
32 lines
1.1 KiB
TOML
[project]
|
|
name = "filetags"
|
|
description = "Management of simple tags within file names"
|
|
# readme = "README.org"
|
|
version = "2025.09.02.1"
|
|
keywords = ["tagging", "tags", "file managing", "file management", "files", "tagtrees", "tagstore", "tag-based navigation", "tag-based filter"]
|
|
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"}
|
|
requires-python = ">=3.10" # see https://devguide.python.org/versions/
|
|
dependencies = [
|
|
"clint>=0.5.1",
|
|
"colorama>=0.4.6",
|
|
"pyreadline3>=3.5.4",
|
|
"pypiwin32; sys_platform == 'win32'",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/novoid/filetags"
|
|
Repository = "https://github.com/novoid/filetags"
|
|
Issues = "https://github.com/novoid/filetags/issues"
|
|
|
|
[project.scripts]
|
|
filetags="filetags:main"
|
|
|