File tree Expand file tree Collapse file tree 2 files changed +12
-5
lines changed
Expand file tree Collapse file tree 2 files changed +12
-5
lines changed Original file line number Diff line number Diff line change 1- recursive-include elevation_mapping_cupy/*.yaml
2- recursive-include elevation_mapping_cupy/*.dat
1+ recursive-include elevation_mapping_cupy *.yaml
2+ recursive-include elevation_mapping_cupy *.dat
3+ recursive-include elevation_mapping_cupy *.json
4+ recursive-include elevation_mapping_cupy *.txt
5+ include README*
6+ include LICENSE*
Original file line number Diff line number Diff line change 66 description = "Elevation mapping with cupy acceleration" ,
77 author = "Jonas Frey" ,
889- packages = find_packages (where = "elevation_mapping_cupy" ),
10- package_dir = {"" : "elevation_mapping_cupy" },
9+ packages = find_packages (),
10+ package_dir = {},
1111 install_requires = [
1212 "numpy" ,
1313 "scipy" ,
2424 include_package_data = True ,
2525 package_data = {
2626 "elevation_mapping_cupy" : [
27- "*" ,
27+ "**/*.yaml" , # Include all .yaml files recursively
28+ "**/*.dat" , # Include all .dat files recursively
29+ "**/*.json" , # Add other file types as needed
30+ "**/*.txt" ,
2831 ],
2932 },
3033)
You can’t perform that action at this time.
0 commit comments