-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
from setuptools import setup, find_packages | ||
|
||
setup( | ||
name='cliport', | ||
name='gensim', | ||
version='0.1.0', | ||
packages=find_packages(), | ||
include_package_data=True, | ||
license=open('LICENSE').read(), | ||
zip_safe=False, | ||
description="CLIPort - What and Where Pathways for Robotic Manipulation.", | ||
author='Mohit Shridhar', | ||
author_email='mshr@cs.washington.edu', | ||
url='https://cliport.github.io/', | ||
description="GenSim: Generating Robotic Simulation Tasks via Large Language Models.", | ||
author='Lirui Wang', | ||
author_email='liruiw@mit.edu', | ||
url='https://liruiw.github.io/gensim', | ||
# install_requires=[line for line in open('requirements.txt').readlines() if "@" not in line], | ||
keywords=['CLIP', 'Vision Language Grounding', 'Robotics', 'Manipulation'], | ||
) | ||
keywords=['Large Language Models', 'Simulation', 'Vision Language Grounding', 'Robotics', 'Manipulation'], | ||
) |