From 3233b92fba4afa9fb84f9ea0a3541715ebe73b20 Mon Sep 17 00:00:00 2001 From: CodeByMrFinchum Date: Sun, 9 Feb 2025 13:21:29 +0100 Subject: [PATCH] patch: Added classifiers for pypi --- CHANGELOG.md | 11 +++++++++-- pyproject.toml | 5 +++++ 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ee5de51..d1d80e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,14 @@ # Changelog -## 1.0.0: -### Refactoring +## 1.0.x + +### 1.0.2: Added Classifier +- Added classifiers in `pyproject.toml` for PyPI. + +### 1.0.1: Contribution +- Added a contribution section in the README for Mr. Finch. + +### **1.0.0** Refactoring - Added function descriptions for better clarity and maintainability. - Introduced guidelines for each function, defining objectives and expected behavior. diff --git a/pyproject.toml b/pyproject.toml index 1ee9c4e..85776ec 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,6 +11,8 @@ readme = "pip_README.md" requires-python = ">=3.8" dependencies = ["piexif", "pillow"] classifiers = [ + "Development Status :: 5 - Production/Stable", + "Topic :: Software Development :: Libraries :: Python Modules", "Programming Language :: Python :: 3", "License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)", "Operating System :: OS Independent", @@ -18,6 +20,9 @@ classifiers = [ [project.urls] Source = "https://gitlab.com/CodeByMrFinchum/optima35" +Documentation = "https://gitlab.com/CodeByMrFinchum/optima35/-/blob/main/README.md" +Changelog = "https://gitlab.com/CodeByMrFinchum/optima35/-/blob/main/CHANGELOG.md" + [project.scripts] optima35 = "optima35.__main__:main"