From d63b04fa2227e1d1725a98f9610c9a0ce5982ae5 Mon Sep 17 00:00:00 2001 From: muchvo <118189931+muchvo@users.noreply.github.com> Date: Wed, 8 Feb 2023 17:40:13 +0800 Subject: [PATCH] chore: add more information to setup.py (#10) --- MANIFEST.in | 4 ++++ safety_gymnasium/version.py | 2 +- setup.py | 10 ++++++++++ 3 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 00000000..db5674ff --- /dev/null +++ b/MANIFEST.in @@ -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 diff --git a/safety_gymnasium/version.py b/safety_gymnasium/version.py index 12c00958..058be65d 100644 --- a/safety_gymnasium/version.py +++ b/safety_gymnasium/version.py @@ -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 diff --git a/setup.py b/setup.py index c5beba85..f88c312b 100755 --- a/setup.py +++ b/setup.py @@ -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='jiamg.ji@gmail.com', + 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: