-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
57 lines (55 loc) · 1.33 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
45
46
47
48
49
50
51
52
53
54
55
56
57
from setuptools import setup
from Cython.Build import cythonize
setup(
name='crowdnav',
version='0.0.1',
packages=[
'crowd_nav',
'crowd_nav.configs',
'crowd_nav.policy',
'crowd_nav.utils',
'crowd_sim',
'crowd_sim.envs',
'crowd_sim.envs.policy',
'crowd_sim.envs.utils',
'crowd_sim.envs.env_manager',
'crowd_sim.envs.env_manager.base_managers',
'drl_utils',
'drl_utils.demon_utils',
'drl_utils.env_utils',
'drl_utils.algorithms',
],
install_requires=[
'gitpython',
'pandas==2.0.3',
'gym==0.23.1',
'matplotlib',
'numpy==1.23.4',
'scipy',
'gymnasium==0.29.0',
'torch==2.2.2',
'stable-baselines3==2.1.0',
'sb3-contrib==2.1.0',
'imitation==1.0.0',
'torchvision',
'pyglet==1.5.0',
'pygame==2.5.2',
'seaborn==0.8.1',
'tqdm==4.65.0',
'tensorboardX',
'opencv-python==4.9.0',
'numba==0.58.1',
'omegaconf==2.3.0',
'hydra==1.2.0',
'jaxlib==0.4.13',
'jax==0.4.13',
'flax==0.6.9',
],
ext_modules=cythonize("crings/crings.pyx", annotate=True),
extras_require={
'test': [
'pylint',
'pytest',
],
},
)