File tree Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 36
36
classifiers = [
37
37
"Environment :: Console" ,
38
38
"Intended Audience :: Developers" ,
39
- "License :: OSI Approved :: Apache Software License" ,
40
39
"Programming Language :: Python" ,
41
40
],
42
41
description = "ROS2 Control command interface." ,
43
42
long_description = """\
44
43
ROS2 Control command interface.""" ,
45
44
license = "Apache License, Version 2.0" ,
46
- tests_require = ["pytest" ],
45
+ extras_require = {
46
+ "test" : [
47
+ "pytest" ,
48
+ ],
49
+ },
47
50
entry_points = {
48
51
"ros2cli.command" : [
49
52
"control = ros2controlcli.command.control:ControlCommand" ,
Original file line number Diff line number Diff line change 34
34
maintainer_email = "[email protected] " ,
35
35
description = "Graphical frontend for interacting with the controller manager." ,
36
36
license = "Apache License, Version 2.0" ,
37
- tests_require = ["pytest" ],
37
+ extras_require = {
38
+ "test" : [
39
+ "pytest" ,
40
+ ],
41
+ },
38
42
entry_points = {
39
43
"console_scripts" : [
40
44
"rqt_controller_manager = \
You can’t perform that action at this time.
0 commit comments