forked from utiasSTARS/GraphIK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (29 loc) · 1002 Bytes
/
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
from setuptools import setup, find_packages
# TODO: see https://github.com/pymanopt/pymanopt/blob/master/setup.py for mmore later
setup(
name="graphIK",
version="0.01",
description="Graph-based kinematics library",
author="Filip Maric, Matthew Giamou",
author_email="[email protected], [email protected]",
license="MIT",
url="https://github.com/utiasSTARS/graphIK",
packages=find_packages(),
install_requires=[
"numpy >= 1.16",
"scipy >= 1.3.0",
"sympy >= 1.5",
"matplotlib >= 3.1",
"cvxpy >= 1.1.0a1",
"networkx == 2.2",
"pymanopt == 0.2.5",
"progress",
"urdfpy @ git+ssh://[email protected]/utiasSTARS/urdfpy@master#egg=urdfpy",
"trimesh <= 3.7.12",
"numba",
"liegroups @ git+ssh://[email protected]/utiasSTARS/liegroups@master#egg=liegroups",
"pandas >= 0.24.2",
"pytest",
],
python_requires=">=3.7",
)