From 568b5f6759184b5c1ebd97f86ab0555d8037c548 Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Thu, 30 Jun 2016 15:20:24 -0600 Subject: [PATCH] Fix setup.py to not expect the API module But instead we expect the `pages` model which took its place --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 2076ab1..569559f 100644 --- a/setup.py +++ b/setup.py @@ -118,14 +118,14 @@ def main(): }, packages = [ "vanth", - "vanth.api", "vanth.backend", + "vanth.pages", "vanth.platform", ], package_data = { "vanth" : ["vanth/*"], "vanth.backend" : ["vanth/backend/*"], - "vanth.api" : ["vanth/api/*"], + "vanth.pages" : ["vanth/pages/*"], "vanth.platform" : ["vanth/platform/*"], }, data_files = get_data_files(),