From edce6fe301ff361f5cf4c74b45b977493cdf3423 Mon Sep 17 00:00:00 2001 From: Mat Kelly Date: Wed, 16 Oct 2024 17:17:25 -0400 Subject: [PATCH] Update Pypi metadata and Py versions supported in the documentation for #847 --- README.md | 2 +- setup.py | 9 ++++++--- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index a3edf11a..adcdf205 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ Another important feature of archival replays is the inclusion of an archival ba ## Installing -InterPlanetary Wayback (ipwb) requires Python 3.8+. ipwb can also be used with Docker ([see below](#user-content-using-docker)). +InterPlanetary Wayback (ipwb) requires Python 3.9+. ipwb can also be used with Docker ([see below](#user-content-using-docker)). For conventional usage, the latest release of ipwb can be installed using pip: diff --git a/setup.py b/setup.py index 7579e1b4..f766a004 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ author_email='me@matkelly.com', description=desc, packages=['ipwb'], - python_requires='>=3.8', + python_requires='>=3.9', license='MIT', long_description=long_description, long_description_content_type="text/markdown", @@ -30,7 +30,9 @@ 'pycryptodome>=3.4.11', 'requests>=2.19.1', 'beautifulsoup4>=4.6.3', - 'surt>=0.3.0' + 'surt>=0.3.0', + 'multiaddr>=0.0.9', + 'packaging==23.0' ], tests_require=[ 'flake8>=3.4', @@ -56,10 +58,11 @@ 'Environment :: Web Environment', - 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12', + 'Programming Language :: Python :: 3.13', 'License :: OSI Approved :: MIT License',