From 09a37ae62886ae47a9acc50117a12ff2cd154622 Mon Sep 17 00:00:00 2001 From: CodeByMrFinchum Date: Sun, 9 Feb 2025 13:26:21 +0100 Subject: [PATCH] patch: Added classifiers for pypi --- CHANGELOG.md | 6 +++++- pyproject.toml | 4 ++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 678af18..60dc87f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Changelog -## 0.6.0: New Local Update Feature +## 0.6.x +### 0.6.1: Classifier +- Added Classifier for pypi + +### 0.6.0: New Local Update Feature - Added support for updating from a local folder containing package files. - Scans a specified folder for available updates. - Installs updates directly from local package files. diff --git a/pyproject.toml b/pyproject.toml index 0456616..e0c386a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,13 +11,17 @@ readme = "README.md" requires-python = ">=3.8" dependencies = ["requests", "packaging"] classifiers = [ + "Development Status :: 4 - Beta", "Programming Language :: Python :: 3", + "Topic :: Software Development :: Libraries :: Python Modules", "License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)", "Operating System :: OS Independent", ] [project.urls] Source = "https://gitlab.com/CodeByMrFinchum/PyPiUpdater" +Documentation = "https://gitlab.com/CodeByMrFinchum/PyPiUpdater/-/blob/main/README.md" +Changelog = "https://gitlab.com/CodeByMrFinchum/PyPiUpdater/-/blob/main/CHANGELOG.md" [tool.hatch.build.targets.wheel] packages = ["src/PyPiUpdater"]