Merge branch 'master' into feat/python-version-requirements-clean

This commit is contained in:
rodos
2025-11-06 10:01:22 +11:00
committed by GitHub
2 changed files with 4 additions and 4 deletions

View File

@@ -9,7 +9,7 @@ The package can be used to backup an *entire* `Github <https://github.com/>`_ or
Requirements
============
- Python 3.8 or higher
- Python 3.10 or higher
- GIT 1.9+
Installation

View File

@@ -40,16 +40,16 @@ setup(
"Development Status :: 5 - Production/Stable",
"Topic :: System :: Archiving :: Backup",
"License :: OSI Approved :: MIT License",
"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",
"Programming Language :: Python :: 3.14",
],
description="backup a github user or organization",
long_description=open_file("README.rst").read(),
long_description_content_type="text/x-rst",
install_requires=open_file("requirements.txt").readlines(),
python_requires=">=3.8",
python_requires=">=3.10",
zip_safe=True,
)