From 0244f53e2e5da6642599acc5e9329669f1caf145 Mon Sep 17 00:00:00 2001 From: Andrew Senetar Date: Thu, 27 Apr 2023 00:28:59 -0500 Subject: [PATCH] fix(build): Fix syntax in setup.cfg, add python 3.11 --- setup.cfg | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/setup.cfg b/setup.cfg index bf82f2e..78316a2 100644 --- a/setup.cfg +++ b/setup.cfg @@ -26,6 +26,7 @@ classifiers = Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.10 + Programming Language :: Python :: 3.11 Topic :: Desktop Environment :: File Managers [options] @@ -38,8 +39,10 @@ include= send2trash* [options.extras_require] -win32 = pywin32; sys_platform == "win32" -objc = pyobjc-framework-Cocoa; sys_platform == "darwin" +win32 = + pywin32; sys_platform == "win32" +objc = + pyobjc-framework-Cocoa; sys_platform == "darwin" nativeLib = pywin32; sys_platform == "win32" pyobjc-framework-Cocoa; sys_platform == "darwin"