-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
59 lines (56 loc) · 1.83 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
58
59
"""Install script for setuptools."""
import setuptools
from os import path
# read the contents of your README file
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setuptools.setup(
name="centergrasp",
version="0.0.1",
author="Eugenio Chisari",
author_email="[email protected]",
install_requires=[
"setuptools==59.5.0",
"numpy==1.23.0",
"open3d==0.18.0",
"trimesh==3.16.4",
"spatialmath-python==1.0.5",
"h5py==3.10.0",
"tqdm==4.66.1",
"opencv-python==4.8.1.78",
"Pillow==10.0.1",
"pytorch-lightning==2.1.0",
"wandb==0.15.12",
"black==23.10.1",
"zstandard==0.21.0",
"colour==0.1.5",
"scikit-image==0.19.3",
"fvcore==0.1.5.post20221221",
"scikit-learn==1.3.2",
"tyro==0.5.10",
"shortuuid==1.0.11",
"roma==1.4.1",
"opentsne==1.0.0",
"pyrealsense2==2.54.2.5684",
"rerun-sdk==0.10.1",
"pycocotools==2.0.7",
"sapien==2.2.2",
"mplib==0.0.9",
"urdfpy @ git+ssh://[email protected]/chisarie/urdfpy#egg=urdfpy",
"hdfdict @ git+ssh://[email protected]/chisarie/hdfdict#egg=hdfdict",
"mesh_to_sdf @ git+ssh://[email protected]/chisarie/mesh_to_sdf#egg=mesh_to_sdf",
],
description="A grasping net",
long_description=long_description,
long_description_content_type="text/markdown",
# license="MIT",
# url="https://github.com/chisarie/jax-agents",
packages=setuptools.find_packages(),
# classifiers=[
# "Programming Language :: Python :: 3",
# "License :: OSI Approved :: MIT License",
# "Operating System :: OS Independent",
# ],
python_requires=">=3.7",
)