From 9828beb5f5e86e269fc9aebd18e7d38376724f5e Mon Sep 17 00:00:00 2001 From: Martin Kletzander Date: Mon, 12 Sep 2022 14:10:50 +0100 Subject: [PATCH] setup.cfg: Use license_files instead of license_file Without this (and recent enough setuptools) I get this warning: /home/nert/dev/python-can/.tox/.package/lib/python3.10/site-packages/setuptools/config/setupcfg.py:508: SetuptoolsDeprecationWarning: The license_file parameter is deprecated, use license_files instead. --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 043fff73a..2f3ee032f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [metadata] -license_file = LICENSE.txt +license_files = LICENSE.txt [mypy] warn_return_any = True