Skip to content

Commit 764acf5

Browse files
authored
[Maps] Add 'include_package_data' field to setup (#26936)
A recent fix to the py.typed verification script that is called in the CI now fails if the field 'include_package_data' does not exist or does not equal 'True' in a package's setup.py. This adds this file to recently onboarded packages that did not have this. Signed-off-by: Paul Van Eck <[email protected]>
1 parent f0f091c commit 764acf5

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

sdk/maps/azure-maps-render/setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@
7979
'azure',
8080
'azure.maps',
8181
]),
82+
include_package_data=True,
8283
install_requires=[
8384
'msrest>=0.6.21',
8485
'azure-common~=1.1',

sdk/maps/azure-maps-route/setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@
7878
'azure',
7979
'azure.maps',
8080
]),
81+
include_package_data=True,
8182
install_requires=[
8283
'msrest>=0.6.21',
8384
'azure-common~=1.1',

0 commit comments

Comments
 (0)