From 59343edc1ec1cd59e374a944a47248cfe67fcff8 Mon Sep 17 00:00:00 2001 From: rncry Date: Mon, 19 Nov 2018 17:34:16 +0000 Subject: [PATCH] Remove third_party package from setup.py As this is no longer being used (now looks like it's in the requirements_dev.txt file instead). Can either remove from setup.py or add back the file in third_party folder to get builds working? --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 3358fc4..1c49fa4 100644 --- a/setup.py +++ b/setup.py @@ -26,5 +26,5 @@ license='Apache License 2.0', long_description=open('README.rst').read(), platforms='all', - packages=['pinject', 'pinject/third_party'], + packages=['pinject'], install_requires=['six>=1.7.3', 'decorator>=4.3.0'])