Skip to content

Commit

Permalink
Merge pull request #29 from smartkiwi/master
Browse files Browse the repository at this point in the history
Install package dependencies automatically
  • Loading branch information
soumith committed Jan 19, 2017
2 parents 048f6f5 + 2fb8447 commit e869fcb
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,14 @@

VERSION = '0.1.6'

# same as ./requirements.txt
requirements = [
'numpy',
'pillow',
'six',
'torch',
]

setup(
# Metadata
name='torchvision',
Expand All @@ -24,4 +32,5 @@
packages=find_packages(exclude=('test',)),

zip_safe=True,
install_requires=requirements,
)

0 comments on commit e869fcb

Please sign in to comment.