-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
39 lines (37 loc) · 917 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
27
28
29
30
31
32
33
34
35
36
37
38
39
# Please don't change the order of following packages!
import sys
from distutils.core import setup
assert sys.version_info.major == 3 and sys.version_info.minor >= 6, "python version >= 3.6 is required"
setup(
name="haco",
install_requires=[
"yapf==0.30.0",
"tensorflow==2.3.1",
"tensorflow-probability==0.11.1",
"tensorboardX",
"metadrive-simulator==0.2.4",
"imageio",
"easydict",
"tensorboardX",
"pyyaml",
"gym==0.19.0",
"ray==1.0.0",
"stable_baselines3",
'ephem',
'h5py',
'imgaug',
'lmdb',
'loguru==0.3.0',
'networkx',
'pandas',
'py-trees==0.8.3',
'pygame==1.9.6',
#'di-engine==0.2.0',
'scikit-image',
#'setuptools==50',
'shapely',
'terminaltables',
'tqdm',
'xmlschema',
],
)