diff options
author | Henry Schreiner <HenrySchreinerIII@gmail.com> | 2022-02-08 23:48:17 -0500 |
---|---|---|
committer | Eli Schwartz <eschwartz93@gmail.com> | 2022-02-09 07:10:00 -0500 |
commit | bae58e6e497831530e9aa80ef1dff0e34d4ef5b1 (patch) | |
tree | 5e49509435b1485eda0d4702bc17785805e198a1 /setup.cfg | |
parent | e1bb424d251d698cd2f70ebaa935cec1e0aad52d (diff) | |
download | meson-bae58e6e497831530e9aa80ef1dff0e34d4ef5b1.zip meson-bae58e6e497831530e9aa80ef1dff0e34d4ef5b1.tar.gz meson-bae58e6e497831530e9aa80ef1dff0e34d4ef5b1.tar.bz2 |
setup.cfg: update classifier, drop deprecated
This adds 3.10 (didn't check to see if it was tested on 3.10, that should be done, but I'm using it on 3.10).
setup_requires is deprecated and should be producing warnings on modern setuptools, and never worked for setuptools anyway - setuptools can't update itself, and setuptools is what is reading this anyway!
Diffstat (limited to 'setup.cfg')
-rw-r--r-- | setup.cfg | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -26,14 +26,13 @@ classifiers = Programming Language :: Python :: 3.7 Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 + Programming Language :: Python :: 3.10 Topic :: Software Development :: Build Tools long_description = Meson is a cross-platform build system designed to be both as fast and as user friendly as possible. It supports many languages and compilers, including GCC, Clang, PGI, Intel, and Visual Studio. Its build definitions are written in a simple non-Turing complete DSL. [options] packages = find: python_requires = >= 3.7 -setup_requires = - setuptools [options.entry_points] console_scripts = |