2022-09-03 11:22:29 +02:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
|
|
setup(
|
2022-09-03 11:37:01 +02:00
|
|
|
name='metastable-projections',
|
2022-09-03 11:22:29 +02:00
|
|
|
version='1.0.0',
|
|
|
|
# url='https://github.com/mypackage.git',
|
|
|
|
# author='Author Name',
|
|
|
|
# author_email='author@gmail.com',
|
|
|
|
# description='Description of my package',
|
|
|
|
packages=['.'],
|
2022-09-03 11:37:01 +02:00
|
|
|
install_requires=['torch', 'stable_baselines3'],
|
2022-09-03 11:22:29 +02:00
|
|
|
)
|