From 8cfcb5897a422000700fb06514917ec0e72afbec Mon Sep 17 00:00:00 2001 From: Felix Yan Date: Sun, 8 Nov 2015 00:50:52 +0800 Subject: [PATCH] Don't install tests directory --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 0a42c6b..aacf290 100755 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ import nvchecker setup( name = 'nvchecker', version = nvchecker.__version__, - packages = find_packages(), + packages = find_packages(exclude=["tests"]), install_requires = ['tornado>=4.1', 'setuptools'], tests_require=[ 'pytest',