diff --git a/README.org b/README.org index 1f36868..44e335e 100644 --- a/README.org +++ b/README.org @@ -85,12 +85,14 @@ If you have installed Python 2 and Python 3 in parallel, make sure to use the correct pip version. You might need to use =pip3= instead of =pip=. If you only have Python 3 installed, you don't have to care ;-) -On Microsoft Windows (only), you are going to need ~pip install -pypiwin32~ as prerequisite. For easy Windows File Explorer +On Microsoft Windows (only), ~pypiwin32~ is an additional as prerequisite. For easy Windows File Explorer integration, take a look at [[https://github.com/novoid/integratethis][integratethis]]. Now install filetags via [[https://pip.pypa.io/en/stable/][pip]]: ~pip install filetags~ +If you wish to install ~filetags~ from the default branch of the blessed GitHub +repository, run ~pip install git+https://github.com/novoid/filetags~. + You get updates by executing the very same pip command again. *** Installation Via Source Code and uv diff --git a/pyproject.toml b/pyproject.toml index fdeb61a..8333f92 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,24 +1,34 @@ [project] name = "filetags" description = "Management of simple tags within file names" -readme = "README.org" +# readme = "README.org" version = "2025.09.02.1" keywords = ["tagging", "tags", "file managing", "file management", "files", "tagtrees", "tagstore", "tag-based navigation", "tag-based filter"] + +# sequence along https://pypi.org/classifiers 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)", + "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", "Operating System :: OS Independent", + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3 :: Only", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", ] + authors = [{name="Karl Voit", email="tools@Karl-Voit.at"}] license = {file = "LICENSE.txt"} -requires-python = ">=3.13" +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] diff --git a/requirements.txt b/requirements.txt deleted file mode 100644 index 9a375f5..0000000 --- a/requirements.txt +++ /dev/null @@ -1,3 +0,0 @@ -pyreadline3 -colorama -clint