From: Michael Orlitzky Date: Wed, 13 May 2026 15:36:04 +0000 (-0400) Subject: pyproject.toml: cleanup, bump to version 0.0.5 X-Git-Url: https://gitweb.michael.orlitzky.com/?a=commitdiff_plain;h=40cd7534d025be3aaa5f148556caa7c8dedaa780;p=geoipyupdate.git pyproject.toml: cleanup, bump to version 0.0.5 Fix the deprecation warning about the license, bump the minimum python, and delete the redundant "Python :: 3" language classifier. --- diff --git a/pyproject.toml b/pyproject.toml index 31b9d3e..722a443 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,15 +4,14 @@ build-backend = "setuptools.build_meta" [project] name = "geoipyupdate" -version = "0.0.4" +version = "0.0.5" description = "Simple python replacement for the MaxMind geoipupdate program" readme = "README.rst" -requires-python = ">=3.11" +requires-python = ">=3.12" keywords = ["maxmind", "geoip"] -license = { text = "AGPL-3.0-or-later" } +license = "AGPL-3.0-or-later" classifiers = [ "Development Status :: 5 - Production/Stable", - "Programming Language :: Python :: 3", "Topic :: Internet :: WWW/HTTP", "Topic :: System :: Systems Administration", "Topic :: Utilities"