Skip to content

Commit ce8d7c1

Browse files
authored
Fix setuptools deprecations (#2395)
1 parent 9371d59 commit ce8d7c1

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

ros2controlcli/setup.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,17 @@
3636
classifiers=[
3737
"Environment :: Console",
3838
"Intended Audience :: Developers",
39-
"License :: OSI Approved :: Apache Software License",
4039
"Programming Language :: Python",
4140
],
4241
description="ROS2 Control command interface.",
4342
long_description="""\
4443
ROS2 Control command interface.""",
4544
license="Apache License, Version 2.0",
46-
tests_require=["pytest"],
45+
extras_require={
46+
"test": [
47+
"pytest",
48+
],
49+
},
4750
entry_points={
4851
"ros2cli.command": [
4952
"control = ros2controlcli.command.control:ControlCommand",

rqt_controller_manager/setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,11 @@
3434
maintainer_email="[email protected]",
3535
description="Graphical frontend for interacting with the controller manager.",
3636
license="Apache License, Version 2.0",
37-
tests_require=["pytest"],
37+
extras_require={
38+
"test": [
39+
"pytest",
40+
],
41+
},
3842
entry_points={
3943
"console_scripts": [
4044
"rqt_controller_manager = \

0 commit comments

Comments
 (0)