-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
23 lines (22 loc) · 851 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
from setuptools import setup, find_packages
# TODO: see https://github.com/pymanopt/pymanopt/blob/master/setup.py for mmore later
setup(
name="generative-graphik",
version="0.1",
description="Generative inverse kinematics",
author="Filip Maric, Oliver Limoyo",
author_email="filip.maric@robotics.utias.utoronto.ca, oliver.limoyo@robotics.utias.utoronto.ca",
license="MIT",
url="https://github.com/utiasSTARS/generative-graphik",
packages=find_packages(),
install_requires=[
"pandas",
"urdfpy",
"numpy <= 1.23.5",
"liegroups @ git+ssh://git@github.com/utiasSTARS/liegroups@generative_ik#egg=liegroups",
"graphIK @ git+ssh://git@github.com/utiasSTARS/graphIK@generative_ik#egg=graphIK",
"networkx >= 2.8.7",
"tensorboard"
],
python_requires=">=3.8",
)