Skip to content

Commit

Permalink
Add missing references to setup.py (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
chernyadev authored Sep 13, 2024
1 parent 52070fa commit 018f8b2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,11 @@ def get_version(rel_path):
packages=setuptools.find_packages(),
python_requires=">=3.10",
install_requires=core_requirements,
package_data={"": [str(p.resolve()) for p in Path("bigym/envs/xmls").glob("**/*")]},
package_data={
"": [str(p.resolve()) for p in Path("bigym/envs/xmls").glob("**/*")]
+ [str(p.resolve()) for p in Path("bigym/envs/presets").glob("**/*.yaml")]
+ [str(p.resolve()) for p in Path("vr/viewer/xmls").glob("**/*")]
},
extras_require={
"dev": ["pre-commit", "pytest"],
"examples": [
Expand Down

0 comments on commit 018f8b2

Please sign in to comment.