From c26d77f949c15badf3b965809fb30db8f1061b9d Mon Sep 17 00:00:00 2001 From: Barry Hart Date: Mon, 21 May 2018 10:36:58 -0400 Subject: [PATCH] Fix missing wsgi subdirectory --- setup.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index 5bd0586..a6ac04e 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ import platform -from setuptools import setup +from setuptools import find_packages, setup # Configure the required packages and scripts to install, depending on # Python version and OS. @@ -34,9 +34,6 @@ REQUIRED_PACKAGES.append('simplejson') _PROTORPC_VERSION = '0.12.0' -packages = [ - 'protorpc', -] setup( name='protorpc', @@ -46,7 +43,7 @@ author='Google Inc.', author_email='rafek@google.com', # Contained modules and scripts. - packages=packages, + packages=find_packages(), entry_points={ 'console_scripts': CONSOLE_SCRIPTS, },