Skip to content

Commit

Permalink
Finalize installation
Browse files Browse the repository at this point in the history
Signed-off-by: An Thai Le <[email protected]>
  • Loading branch information
anindex committed Oct 16, 2023
1 parent 7002ee3 commit 01b93f4
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ In other words, within multi-modal motion planning scope, `mpot` enables better

## Installation

Simply activate your conda/Python environment and run
Simply activate your conda/Python environment, navigate to `mpot` root directory and run

```azure
pip install -e .
Expand Down
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
scipy
numpy
matplotlib
labmaze
torch
einops
torch_robotics @ git+https://github.com/anindex/torch_robotics@main
torch_robotics @ git+https://github.com/anindex/torch_robotics.git@68d28399ff67f34ca3be0130acdc7cba2fabd61b
15 changes: 8 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from setuptools import setup
import setuptools
from codecs import open
from os import path

Expand All @@ -11,10 +11,11 @@
for line in f:
requires_list.append(str(line))

setup(name='mpot',
description="Implementation of MPOT in PyTorch",
author="An T. Le",
author_email="[email protected]",
packages=['mpot'],
install_requires=requires_list,
setuptools.setup(
name='mpot',
description="Implementation of MPOT in PyTorch",
author="An T. Le",
author_email="[email protected]",
packages=setuptools.find_namespace_packages(),
install_requires=requires_list,
)

0 comments on commit 01b93f4

Please sign in to comment.