Skip to content

Commit

Permalink
fixed setuptools issue as suggested in sidewalklabs#32 (comment)
Browse files Browse the repository at this point in the history
  • Loading branch information
roireshef committed Jul 8, 2020
1 parent cd36c5b commit 848f9d8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
},
include_package_data=True,
package_data={
'static': 'sumo_web3d/static/*',
'scenarios': 'sumo_web3d/scenarios/*',
'scenarios.json': 'sumo_web3d/scenarios.json'
'static': ['sumo_web3d/static/*'],
'scenarios': ['sumo_web3d/scenarios/*'],
'scenarios.json': ['sumo_web3d/scenarios.json']
},
packages=[
'sumo_web3d',
Expand Down

0 comments on commit 848f9d8

Please sign in to comment.