setup.py 698 Bytes
Newer Older
soumith's avatar
soumith committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python
import os
import shutil
import sys
from setuptools import setup, find_packages

VERSION = '0.1.5'

long_description = '''torch-vision provides DataLoaders, Pre-trained models
and common transforms for torch for images and videos'''

setup_info = dict(
    # Metadata
    name='torchvision',
    version=VERSION,
    author='PyTorch Core Team',
    author_email='soumith@pytorch.org',
    url='https://github.com/pytorch/vision',
    description='image and video datasets and models for torch deep learning',
    long_description=long_description,
    license='BSD',

    # Package info
soumith's avatar
soumith committed
24
    packages=find_packages(exclude=('test',)),
soumith's avatar
soumith committed
25
26
27
28
29

    zip_safe=True,
)

setup(**setup_info)