forked from flyingbitac/diffaero
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (38 loc) · 1000 Bytes
/
setup.py
File metadata and controls
39 lines (38 loc) · 1000 Bytes
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
from setuptools import setup, find_packages
setup(
name='diffaero',
version='0.1',
# packages=find_packages(),
packages=[".", "env", "algo", "network", "utils", "script"],
install_requires=[
'torch>=2.0.0',
'tensordict',
'taichi',
'tqdm',
'hydra-core',
'hydra-joblib-launcher',
'hydra_colorlog',
'hydra-optuna-sweeper',
'welford_torch',
'line_profiler',
'tensorboard',
'tensorboardX',
'torch-tb-profiler',
'wandb',
'gpustat',
'opencv-python',
'pytorch3d@git+https://github.com/facebookresearch/pytorch3d.git@stable#egg=pytorch3d',
'open3d',
'numpy',
'moviepy==1.0.3',
'imageio',
'imageio-ffmpeg',
'matplotlib',
'onnx',
'onnxruntime'
],
author='Xinhong Zhang',
author_email='xhzhang@bit.edu.cn',
description='',
url='https://github.com/flyingbitac/diffaero'
)