patch: Added classifiers for pypi

This commit is contained in:
Mr Finchum 2025-02-09 13:26:21 +01:00
parent cb568730d8
commit 09a37ae628
2 changed files with 9 additions and 1 deletions

View file

@ -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.

View file

@ -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"]