From efe86c67f287b33701dcdb2198f2fef587ea0be1 Mon Sep 17 00:00:00 2001 From: Neil Booth Date: Sat, 26 Aug 2017 15:05:50 +0900 Subject: [PATCH] Exclude tests directory from installation Fixes #223 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index b5376cc..9d591a5 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ setuptools.setup( # via environment variables, in which case I've tested with 15.0.4 # "x11_hash" package (1.4) is required to sync DASH network. install_requires=['plyvel', 'pylru', 'irc', 'aiohttp >= 1'], - packages=setuptools.find_packages(), + packages=setuptools.find_packages(exclude=['tests']), description='ElectrumX Server', author='Neil Booth', author_email='kyuupichan@gmail.com',