From 8f4c2603138bf11f2e8967fa2637b345036adcda Mon Sep 17 00:00:00 2001 From: Tim Rupp Date: Tue, 28 Mar 2017 13:50:09 -0700 Subject: [PATCH] Adds setup_requirements to setup.py this is needed to correctly install from pypi --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 5145b11da..d61ca93e1 100644 --- a/setup.py +++ b/setup.py @@ -43,6 +43,7 @@ packages=find_packages( exclude=["*.test", "*.test.*", "test.*", "test_*", "test", "test*"] ), + data_files=[('.', ['setup_requirements.txt'])], classifiers=[ 'Development Status :: 5 - Production/Stable', 'License :: OSI Approved :: Apache Software License',