From 0929267009d7958745380f07a855d11a0dcee01b Mon Sep 17 00:00:00 2001 From: mini-1235 Date: Wed, 2 Sep 2026 18:08:45 +0000 Subject: [PATCH] Fix deprecated bondpy setuptools options --- bondpy/setup.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/bondpy/setup.py b/bondpy/setup.py index eba35ad..9e2588d 100644 --- a/bondpy/setup.py +++ b/bondpy/setup.py @@ -18,13 +18,14 @@ keywords=['ROS'], classifiers=[ 'Intended Audience :: Developers', - 'License :: OSI Approved :: Apache Software License', 'Programming Language :: Python', 'Topic :: Software Development', ], description=( 'Python implementation of bond.' ), - license='BSD', - tests_require=['pytest'], + extras_require={ + 'test': ['pytest'], + }, + license='BSD-3-Clause', )