-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (36 loc) · 940 Bytes
/
Copy pathsetup.py
File metadata and controls
37 lines (36 loc) · 940 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
from setuptools import find_packages, setup
setup(
name="easyhec",
version="0.1.9",
packages=find_packages(),
package_data={"easyhec": ["examples/real/robot_definitions/**"]},
author="Stone Tao",
homepage="https://github.com/stonet2000/easyhec",
description="EasyHec is a library for fast and automatic camera extrinsic calibration",
license="BSD-3-Clause",
url="https://github.com/stonet2000/easyhec",
python_requires=">=3.9",
install_requires=[
"tyro",
"torch",
"tqdm",
"opencv-python",
"trimesh",
"transforms3d",
"matplotlib",
"urchin",
"opencv-python",
# ninja is used by nvdiffrast
"ninja>=1.11",
],
extras_require={
"dev": [
"black",
"isort",
"pre-commit",
],
"sim-maniskill": [
"mani_skill-nightly",
],
},
)