Skip to content

Commit 5bdeb4a

Browse files
committed
Attempting to solve github installation with explicit enumeration of data files.
1 parent 3994a56 commit 5bdeb4a

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

setup.py

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,5 +79,17 @@
7979
include_package_data=True, # We need this to include static assets (images)
8080
package_data={
8181
"torch_concepts.assets": ["*"],
82-
}
82+
},
83+
data_files=[
84+
(
85+
"torch_concepts/assets",
86+
[
87+
"torch_concepts/assets/ambulance.png",
88+
"torch_concepts/assets/lights.png",
89+
"torch_concepts/assets/single_lane_road_intersection.png",
90+
"torch_concepts/assets/white_black_car.png",
91+
"torch_concepts/assets/white_car.png",
92+
]
93+
),
94+
],
8395
)

0 commit comments

Comments
 (0)