-
Notifications
You must be signed in to change notification settings - Fork 31
/
setup.py
44 lines (38 loc) · 1.08 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import os
from setuptools import setup, find_packages
def find_data_packages(where):
data_packages = []
for filepath, dirnames, filenames in os.walk(where):
filepath = filepath.replace('\\', '/') + '/*'
filepath = filepath[len(where) + 1:]
data_packages.append(filepath)
return data_packages
__version__ = "1.1.0"
setup(
name='DSAC2.0',
version=__version__,
description='Distributional Soft Actor-Critic 2.0',
url='https://gitee.com/tsinghua-university-iDLab-GOPS/gops',
author='Intelligent Driving Lab (iDLab)-Jingliang Duan',
packages=[package for package in find_packages() if package.startswith('gops')],
package_data={
'gops.env': find_data_packages('gops/env')
},
install_requires=[
'torch>=1.6.0',
'numpy>1.16.0',
'ray>=1.0.0',
'gym==0.23.1',
'pygame',
'box2d',
'pandas',
'tensorboard>=2.5.0',
'matplotlib',
'pyglet',
'seaborn',
'scipy',
'slxpy',
'openpyxl'
],
python_requires='>=3.6',
)