From b3bc7ec04975ab43a651b78cd708e8c32f974293 Mon Sep 17 00:00:00 2001 From: lilydjwg Date: Fri, 2 Oct 2020 13:03:12 +0800 Subject: [PATCH] exclude docs/ in setup.py [skip ci] --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 798ffb3..3b4fabd 100755 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ setup( platforms = 'any', zip_safe = True, - packages = find_namespace_packages(exclude=['tests', 'build*']), + packages = find_namespace_packages(exclude=['tests', 'build*', 'docs']), install_requires = ['setuptools', 'toml', 'structlog', 'appdirs', 'tornado>=6', 'pycurl'], extras_require = { 'vercmp': ['pyalpm'],