From 6b72b60cde119d924ed67bb35c17cf977718f9fa Mon Sep 17 00:00:00 2001 From: Scott Sanderson Date: Fri, 24 Jul 2015 16:23:20 -0400 Subject: [PATCH] MAINT: Don't install non-zipline packages. In particular, don't give anyone who installs zipline a global package named 'tests'. (sob) --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 637c4e87..7738b678 100644 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ setup( description='A backtester for financial algorithms.', author='Quantopian Inc.', author_email='opensource@quantopian.com', - packages=find_packages(), + packages=['zipline'], ext_modules=cythonize(ext_modules), scripts=['scripts/run_algo.py'], include_package_data=True,