Skip to content

Commit

Permalink
Added setup.py file
Browse files Browse the repository at this point in the history
  • Loading branch information
sony committed Oct 5, 2020
1 parent 503cd97 commit 6f07bff
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions manipulation/playing_with_food/embedding_learning_scripts/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
"""
Setup script for food_embeddings in playing_with_food repo
"""

from setuptools import setup

requirements = [
'numpy',
'scipy',
'matplotlib',
'torchvision',
'torch',
'opencv-python',
'tensorboard'
]

setup(name='food_embeddings',
version='0.1.0',
description='A library for making embeddings of food items',
package_dir = {'': '.'},
packages=['food_embeddings'],
install_requires=requirements
)

0 comments on commit 6f07bff

Please sign in to comment.