diff --git a/setup.py b/setup.py index 93927ea..ea31965 100644 --- a/setup.py +++ b/setup.py @@ -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', ], -) \ No newline at end of file +)