Skip to content

Commit ead6023

Browse files
Make sure to install py.typed files (#886)
Signed-off-by: Christophe Bedard <[email protected]>
1 parent 820e5a2 commit ead6023

File tree

5 files changed

+5
-0
lines changed

5 files changed

+5
-0
lines changed

launch/setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
['resource/' + package_name]),
1414
('share/launch/frontend', ['share/launch/frontend/grammar.lark']),
1515
],
16+
package_data={'': ['py.typed']},
1617
install_requires=['setuptools'],
1718
zip_safe=True,
1819
author='Dirk Thomas',

launch_pytest/setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
glob.glob(f'test/{package_name}/examples/executables/[!_]*')
2525
),
2626
],
27+
package_data={'': ['py.typed']},
2728
entry_points={
2829
'pytest11': ['launch_pytest = launch_pytest.plugin'],
2930
},

launch_testing/setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
('share/launch_testing', ['package.xml']),
1515
('share/launch_testing/examples', glob.glob('test/launch_testing/examples/[!_]**')),
1616
],
17+
package_data={'': ['py.typed']},
1718
entry_points={
1819
'console_scripts': ['launch_test=launch_testing.launch_test:main'],
1920
'pytest11': ['launch_testing = launch_testing.pytest.hooks'],

launch_xml/setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
('share/ament_index/resource_index/packages',
1313
['resource/' + package_name]),
1414
],
15+
package_data={'': ['py.typed']},
1516
install_requires=['setuptools'],
1617
zip_safe=True,
1718
author='Ivan Paunovic',

launch_yaml/setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
('share/ament_index/resource_index/packages',
1313
['resource/' + package_name]),
1414
],
15+
package_data={'': ['py.typed']},
1516
install_requires=['setuptools'],
1617
zip_safe=True,
1718
author='Ivan Paunovic',

0 commit comments

Comments
 (0)