X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=setup.py;h=cd2eac819f0f574174e59fc7e46541991475ba4e;hb=c7205de2f10dfa0064b02e32bd811a377c1700c3;hp=5ad9f59d34f2c2e055e7030ef04ec7b55a65c0c0;hpb=c8623aa92c99464cd2405d31c376fa3da844c3e4;p=mimedecode.git diff --git a/setup.py b/setup.py index 5ad9f59..cd2eac8 100755 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ if sys.version_info[:2] == (2, 7): execfile(versionpath, mimedecode_version) # noqa: F821 'execfile' Py3 elif sys.version_info >= (3, 4): - exec(open(versionpath, 'rU').read(), mimedecode_version) + exec(open(versionpath, 'r').read(), mimedecode_version) else: raise ImportError("mimedecode requires Python 2.7 or 3.4+") @@ -54,6 +54,10 @@ setup( 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', ], packages=['mimedecode'], entry_points={