Spaces:
Runtime error
Runtime error
| from setuptools import setup, find_packages | |
| setup( | |
| name='cliport', | |
| 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/', | |
| # install_requires=[line for line in open('requirements.txt').readlines() if "@" not in line], | |
| keywords=['CLIP', 'Vision Language Grounding', 'Robotics', 'Manipulation'], | |
| ) |