-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.py
30 lines (29 loc) · 1011 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="filip.maric@robotics.utias.utoronto.ca, matthew.giamou@robotics.utias.utoronto.ca",
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.8.7",
"pymanopt == 0.2.5",
"progress",
"urdfpy @ git+ssh://git@github.com/utiasSTARS/urdfpy@master#egg=urdfpy",
"trimesh <= 3.7.12",
"numba",
"liegroups @ git+ssh://git@github.com/utiasSTARS/liegroups@generative_ik#egg=liegroups",
"pandas >= 0.24.2",
"pytest",
],
python_requires=">=3.7",
)