-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add more information to setup.py (#10)
- Loading branch information
Showing
3 changed files
with
15 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
recursive-include safety_gymnasium/assets/meshes *.stl *.STL *.obj | ||
recursive-include safety_gymnasium/assets/textures *.png *.jpg *.jpeg | ||
recursive-include safety_gymnasium/assets/xmls *.xml | ||
recursive-include safety_gymnasium/configs *.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,6 +19,7 @@ | |
import re | ||
import sys | ||
|
||
import setuptools | ||
from setuptools import setup | ||
|
||
|
||
|
@@ -49,6 +50,15 @@ | |
setup( | ||
name='safety_gymnasium', | ||
version=version.__version__, | ||
author='Safety-Gymnasium Team', | ||
author_email='[email protected]', | ||
description='Safety-Gymnaisum is a highly scalable and customizable safe reinforcement learning environment library.', | ||
url='https://github.com/PKU-MARL/Safety-Gymnasium', | ||
python_requires='>=3.8', | ||
packages=setuptools.find_namespace_packages( | ||
include=['safety_gymnasium', 'safety_gymnasium.*'], | ||
), | ||
include_package_data=True, | ||
) | ||
finally: | ||
if VERSION_CONTENT is not None: | ||
|