From 9494e4cb34f989b44e34150219e9b028e8b1a55e Mon Sep 17 00:00:00 2001 From: Charlotte-Sommerville Date: Mon, 5 May 2014 17:13:41 -0700 Subject: [PATCH] modified setup.py to include proper packages --- setup.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index cffd100..7ec1a7f 100644 --- a/setup.py +++ b/setup.py @@ -6,11 +6,17 @@ except ImportError: setup( name = "IndicoIo", version = '0.2.5', - packages = ["IndicoIo",], + packages = [ + "IndicoIo", + "IndicoIo.text.sentiment", + "IndicoIo.images.fer", + "IndicoIo.images.facial_features", + "IndicoIo.text", + "IndicoIo.images" + ], license = "MIT License (See LICENSE)", long_description = open("README").read(), url = "https://github.com/IndicoDataSolutions/IndicoIo-python", author = "Alec Radford, Slater Victoroff", author_email = "Alec Radford , Slater Victoroff ", - py_modules = ['IndicoIo.text.sentiment', 'IndicoIo.images.fer', 'IndicoIo.images.facial_features'] )