-
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) · 1.11 KB
/
setup.py
File metadata and controls
39 lines (38 loc) · 1.11 KB
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="diffusion_policy",
version="0.1.0",
description="Diffusion Policy from Scratch.",
author="MoriBot",
author_email="mrahme97@gmail.com",
url="https://github.com/moribots/2d-arm-diffusion",
packages=find_packages(),
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
python_requires=">=3.8",
install_requires=[
"torch>=2.0.0",
"torchvision>=0.10.0",
"einops>=0.6.0",
"pyarrow>=10.0.0",
"pygame>=2.1",
"gymnasium>=0.28.1",
"gym-pusht>=0.0.1",
"datasets>=2.0.0",
"pillow>=9.0.0",
"numpy>=1.20.0",
"wandb>=0.15.0",
"tqdm>=4.62.0",
"opencv-python>=4.5.0",
"tabulate>=0.8.9",
"pandas>=1.3.0",
"matplotlib>=3.4.0",
"pytorch_lightning>=2.0.0",
"imageio>=2.25.0",
],
)