Skip to content

Commit 8e9a4af

Browse files
authored
fix setuptools deprecations (#877)
Signed-off-by: mosfet80 <[email protected]>
1 parent 4e30600 commit 8e9a4af

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

rosidl_cli/setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
packages=find_packages(exclude=['test']),
88
extras_require={
99
'completion': ['argcomplete'],
10+
'test': [
11+
'pytest',
12+
],
1013
},
1114
data_files=[
1215
('share/ament_index/resource_index/packages', [
@@ -32,14 +35,12 @@
3235
classifiers=[
3336
'Environment :: Console',
3437
'Intended Audience :: Developers',
35-
'License :: OSI Approved :: Apache Software License',
3638
'Programming Language :: Python',
3739
],
3840
description='Command line tools for ROS interface generation.',
3941
long_description="""\
4042
The tooling provides a single command line script for ROS interface source code generation.""",
4143
license='Apache License, Version 2.0',
42-
tests_require=['pytest'],
4344
entry_points={
4445
'console_scripts': [
4546
'rosidl = rosidl_cli.cli:main',

0 commit comments

Comments
 (0)