Update setup.py

Exclude results from possible packaging as it has .py now
This commit is contained in:
Ross Wightman 2020-07-09 09:42:36 -07:00 committed by GitHub
parent 0d5550c1e2
commit 31cf1251c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -40,7 +40,7 @@ setup(
# Note that this is a string of words separated by whitespace, not a list.
keywords='pytorch pretrained models efficientnet mobilenetv3 mnasnet',
packages=find_packages(exclude=['convert', 'tests']),
packages=find_packages(exclude=['convert', 'tests', 'results']),
include_package_data=True,
install_requires=['torch >= 1.0', 'torchvision'],
python_requires='>=3.6',