forked from pytorch/vision
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (28 loc) · 664 Bytes
/
setup.py
File metadata and controls
35 lines (28 loc) · 664 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/usr/bin/env python
import os
import shutil
import sys
from setuptools import setup, find_packages
readme = open('README.rst').read()
VERSION = '0.1.8'
requirements = [
'numpy',
'pillow',
'six',
'torch',
]
setup(
# 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=readme,
license='BSD',
# Package info
packages=find_packages(exclude=('test',)),
zip_safe=True,
install_requires=requirements,
)