@@ -10,22 +10,20 @@ description = Module for decorators, wrappers and monkey patching.
1010long_description = file: README.rst
1111long_description_content_type = text/x-rst
1212license = BSD
13- license_file = LICENSE
13+ license_files = LICENSE
1414platform = any
1515keywords = wrapper, proxy, decorator
1616classifiers =
1717 Development Status :: 5 - Production/Stable
1818 License :: OSI Approved :: BSD License
19- Programming Language :: Python :: 2
20- Programming Language :: Python :: 2.7
2119 Programming Language :: Python :: 3
22- Programming Language :: Python :: 3.5
2320 Programming Language :: Python :: 3.6
2421 Programming Language :: Python :: 3.7
2522 Programming Language :: Python :: 3.8
2623 Programming Language :: Python :: 3.9
2724 Programming Language :: Python :: 3.10
2825 Programming Language :: Python :: 3.11
26+ Programming Language :: Python :: 3.12
2927 Programming Language :: Python :: Implementation :: CPython
3028 Programming Language :: Python :: Implementation :: PyPy
3129project_urls =
@@ -35,7 +33,7 @@ project_urls =
3533
3634[options]
3735zip_safe = false
38- python_requires = >= 2.7, != 3.0.*, != 3.1.*, != 3.2.*, != 3.3.*, != 3.4.*
36+ python_requires = >= 3.6
3937packages = find:
4038package_dir =
4139 =src
@@ -72,24 +70,22 @@ norecursedirs = .tox venv
7270
7371[tox:tox]
7472envlist =
75- py{27,35, 36,37,38,39,310,311,312}
76- py{27,35, 36,37,38,39,310,311,312}-{without,install,disable}-extensions,
73+ py{36,37,38,39,310,311,312}
74+ py{36,37,38,39,310,311,312}-{without,install,disable}-extensions,
7775 pypy-without-extensions
7876
7977[gh-actions]
8078python =
81- 2.7: py27, py27-without-extensions, py27-install-extensions, py27-disable-extensions
82- 3.5: py35, py35-without-extensions, py35-install-extensions, py35-disable-extensions
8379 3.6: py36, py36-without-extensions, py36-install-extensions, py36-disable-extensions
8480 3.7: py37, py37-without-extensions, py37-install-extensions, py37-disable-extensions
8581 3.8: py38, py38-without-extensions, py38-install-extensions, py38-disable-extensions
8682 3.9: py39, py39-without-extensions, py39-install-extensions, py39-disable-extensions
8783 3.10: py310, py310-without-extensions, py310-install-extensions, py310-disable-extensions
8884 3.11: py311, py311-without-extensions, py311-install-extensions, py311-disable-extensions
8985 3.12: py312, py312-without-extensions, py312-install-extensions, py312-disable-extensions
90- pypy-2.7: pypy-without-extensions
9186 pypy-3.8: pypy-without-extensions
9287 pypy-3.9: pypy-without-extensions
88+ pypy-3.10: pypy-without-extensions
9389
9490[testenv]
9591deps =
0 commit comments