metastable-baselines2/setup.py

13 lines
355 B
Python
Raw Normal View History

2023-08-14 10:50:53 +02:00
from setuptools import setup, find_packages
setup(
2023-11-11 12:14:30 +01:00
name='metastable_baselines2',
version='2.1.0.0',
2023-08-14 10:50:53 +02:00
# url='https://github.com/mypackage.git',
# author='Author Name',
# author_email='author@gmail.com',
# description='Description of my package',
packages=['.'],
2023-11-11 12:14:30 +01:00
install_requires=['gymnasium', 'stable_baselines3==2.1.0'],
2023-08-14 10:50:53 +02:00
)