Update setup.py

This commit is contained in:
Phil Wang
2020-10-11 00:06:26 -07:00
committed by GitHub
parent 5bf45a2d4d
commit ced464dcb4

View File

@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
setup(
name = 'vit-pytorch',
packages = find_packages(),
packages = find_packages(exclude=['examples']),
version = '0.2.0',
license='MIT',
description = 'Vision Transformer (ViT) - Pytorch',
@@ -25,4 +25,4 @@ setup(
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
],
)
)