From 0891885485e761179f96711ad5a867426600aa29 Mon Sep 17 00:00:00 2001 From: Phil Wang Date: Wed, 22 Dec 2021 12:44:29 -0800 Subject: [PATCH] include tests in package for conda --- MANIFEST.in | 1 + setup.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..37f630a --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1 @@ +recursive-include tests * diff --git a/setup.py b/setup.py index c57b9c3..866ba79 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup, find_packages setup( name = 'vit-pytorch', packages = find_packages(exclude=['examples']), - version = '0.25.3', + version = '0.25.5', license='MIT', description = 'Vision Transformer (ViT) - Pytorch', author = 'Phil Wang',