mirror of
https://github.com/certbot/certbot.git
synced 2026-05-28 04:34:11 -04:00
this fixes the security alerts those with access can see at https://github.com/certbot/certbot/security/dependabot i based what needed to be done to drop python < 3.9.2 support on https://github.com/certbot/certbot/pull/10077 and concluded we only really needed to update `python_requires`. we could do a deprecation period for this, but i think it's not necessary. cryptography didn't (it's not even in mentioned in [their changelog](https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst)) and none of the major LTS distros use python 3.9.0 or 3.9.1
42 lines
1.3 KiB
Python
42 lines
1.3 KiB
Python
from setuptools import find_packages
|
|
from setuptools import setup
|
|
|
|
setup(
|
|
name='letstest',
|
|
version='1.0',
|
|
description='Test Certbot on different AWS images',
|
|
url='https://github.com/certbot/certbot',
|
|
author='Certbot Project',
|
|
author_email='certbot-dev@eff.org',
|
|
license='Apache License 2.0',
|
|
python_requires='>=3.9.2',
|
|
classifiers=[
|
|
'Development Status :: 5 - Production/Stable',
|
|
'Intended Audience :: Developers',
|
|
'License :: OSI Approved :: Apache Software License',
|
|
'Programming Language :: Python',
|
|
'Programming Language :: Python :: 3',
|
|
'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',
|
|
'Topic :: Internet :: WWW/HTTP',
|
|
'Topic :: Security',
|
|
],
|
|
|
|
packages=find_packages(),
|
|
include_package_data=True,
|
|
install_requires=[
|
|
'boto3',
|
|
'botocore',
|
|
# The API from Fabric 2.0+ is used instead of the 1.0 API.
|
|
'fabric>=2',
|
|
'pyyaml',
|
|
],
|
|
entry_points={
|
|
'console_scripts': [
|
|
'letstest=letstest.multitester:main',
|
|
],
|
|
}
|
|
)
|