-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
26 lines (23 loc) · 863 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
from setuptools import setup, find_packages
import sys
if sys.version_info.major != 3:
print("This Python is only compatible with Python 3, but you are running "
"Python {}. The installation will likely fail.".format(sys.version_info.major))
setup(name='potion',
packages=[package for package in find_packages()
if package.startswith('potion')],
install_requires=[
'gymnasium[classic_control]',
'numpy',
'scipy',
'joblib',
'torch',
'tensorboardX',
'matplotlib',
'jupyter',
'pandas'],
description="Policy Optimization Framework and Algorithms",
author="Matteo Papini",
url='https://github.com/T3p/potion',
author_email="matteo.papini@polimi.it",
version="0.2.1")