Skip to content

Commit 5770f01

Browse files
committed
Refactor setup.py
Signed-off-by: Irene Bandera <[email protected]>
1 parent 6372dfc commit 5770f01

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

tools/ddsrouter_yaml_validator/setup.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,17 @@
1515
('share/' + package_name, [package_name + '/ddsrouter_config_schema.json']),
1616
('share/' + package_name, [package_name + '/full_example.yaml'])
1717
],
18-
install_requires=['setuptools'],
18+
install_requires=[],
1919
zip_safe=True,
2020
maintainer='eprosima',
2121
maintainer_email='[email protected]',
2222
description='Tool used for validating DDS-Router configuration files',
2323
license='Apache License, Version 2.0',
24-
tests_require=['pytest'],
25-
test_suite='tests',
24+
extras_require={
25+
'test': [
26+
'pytest', # Add your testing dependencies here
27+
],
28+
},
2629
entry_points={
2730
'console_scripts': [
2831
'ddsrouter_yaml_validator = ddsrouter_yaml_validator.ddsrouter_yaml_validator:main',

0 commit comments

Comments
 (0)