Skip to content

Commit

Permalink
chore: add more information to setup.py (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
muchvo authored Feb 8, 2023
1 parent 79c6aec commit d63b04f
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
4 changes: 4 additions & 0 deletions MANIFEST.in
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
2 changes: 1 addition & 1 deletion safety_gymnasium/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# ==============================================================================
"""Safety-Gymnasium."""

__version__ = '0.0.1'
__version__ = '0.1.0b0'
__license__ = 'Apache License, Version 2.0'
__author__ = 'Safety Gymnasium Contributors'
__release__ = False
Expand Down
10 changes: 10 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
import re
import sys

import setuptools
from setuptools import setup


Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit d63b04f

Please sign in to comment.