Skip to content

Commit 9084042

Browse files
authored
fix setuptools deprecations (#268)
1 parent ba34f27 commit 9084042

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

generate_parameter_library_py/setup.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,13 +79,16 @@
7979
keywords=['ROS'],
8080
classifiers=[
8181
'Intended Audience :: Developers',
82-
'License :: OSI Approved :: BSD-3-Clause',
8382
'Programming Language :: Python',
8483
'Topic :: Software Development',
8584
],
8685
description='Generate the ROS parameter struct in C++ and Python with callbacks for updating.',
8786
license='BSD-3-Clause',
88-
tests_require=['pytest'],
87+
extras_require={
88+
'test': [
89+
'pytest',
90+
],
91+
},
8992
entry_points={
9093
'console_scripts': [
9194
'generate_parameter_library_cpp = generate_parameter_library_py.generate_cpp_header:main',

0 commit comments

Comments
 (0)