-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
27 lines (26 loc) · 1.02 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
from setuptools import setup, find_packages
setup(
name='tools',
version='0.0.1',
description='Tools for inverse constraint learning',
author='Ashish Gaurav',
author_email='ashish.gaurav@uwaterloo.ca',
license='Proprietary',
packages=find_packages(),
include_package_data=True,
package_data={
'tools': ['assets/driving/*.png', 'assets/highD/*',
'assets/exiD/*', 'assets/mujoco/*']
},
install_requires=[
'pytest', 'genbadge', 'coverage', # Testing
'pyinterval', 'dill', # Interval objects and pickling
'pdoc', # Documentation generation
'torch==1.11.0', 'numpy', 'pandas', 'scikit-learn', 'POT', 'tensorflow',
# Neural networks and machine learning
'gym', 'pyglet', 'Pillow', 'pygame', # Reinforcement learning
'tensorboard', 'matplotlib', 'tqdm', 'plotly', 'seaborn', # Plotting & progress
'numba', # JIT
'joblib', 'mpi4py', 'mujoco', 'mujoco_py', # safe_rl package for OpenAI PPO-Lagrange
],
)