metastable-baselines2/setup.py
2023-08-14 10:50:53 +02:00

13 lines
332 B
Python

from setuptools import setup, find_packages
setup(
name='sbBrix',
version='1.0.0',
# url='https://github.com/mypackage.git',
# author='Author Name',
# author_email='author@gmail.com',
# description='Description of my package',
packages=['.'],
install_requires=['gym', 'stable_baselines3==1.8.0'],
)