Commit e869fcbe authored by Soumith Chintala's avatar Soumith Chintala Committed by GitHub
Browse files

Merge pull request #29 from smartkiwi/master

Install package dependencies automatically
parents 048f6f50 2fb84474
...@@ -9,6 +9,14 @@ readme = open('README.rst').read() ...@@ -9,6 +9,14 @@ readme = open('README.rst').read()
VERSION = '0.1.6' VERSION = '0.1.6'
# same as ./requirements.txt
requirements = [
'numpy',
'pillow',
'six',
'torch',
]
setup( setup(
# Metadata # Metadata
name='torchvision', name='torchvision',
...@@ -24,4 +32,5 @@ setup( ...@@ -24,4 +32,5 @@ setup(
packages=find_packages(exclude=('test',)), packages=find_packages(exclude=('test',)),
zip_safe=True, zip_safe=True,
install_requires=requirements,
) )
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment