From de4e065ca69e4027b6d4e002eff729754f5db65e Mon Sep 17 00:00:00 2001 From: Steve Nyemba Date: Mon, 23 Jun 2025 10:25:14 -0500 Subject: [PATCH] bug fix with newer setuptools --- setup.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 503a2d6..119baab 100644 --- a/setup.py +++ b/setup.py @@ -24,8 +24,9 @@ args["url"] = "https://healthcareio.the-phi.com/git/code/transport.git" args['scripts'] = ['bin/transport'] args['classifiers'] = ['Programming Language :: Python :: 3', 'License :: OSI Approved :: MIT License', - 'Operating System :: OS Independent', - ], + "Topic :: Utilities", + 'Operating System :: OS Independent' + ] # if sys.version_info[0] == 2 : # args['use_2to3'] = True # args['use_2to3_exclude_fixers']=['lib2to3.fixes.fix_import']