-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 711 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 711 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages
import sys
if not (sys.version.startswith('3')):
raise Exception('RLCodebase supports Python3 only.')
setup(name='rlcodebase',
packages=[package for package in find_packages()
if package.startswith('rlcodebase')],
install_requires=[
'torch==1.8.0',
'tensorflow>=2.5.1',
'gym==0.21.0',
'torchvision==0.9.0',
'opencv-python',
'pandas',
'pathlib',
'numpy'],
description="Codebase of Reinforcement Learning Algorithms",
author="Jinwei Xing",
url='https://github.com/KarlXing/RLCodebase',
author_email="jinweixing1006@gmail.com",
version="0.3")