Fix setup.py to not expect the API module

But instead we expect the `pages` model which took its place
This commit is contained in:
Eli Ribble 2016-06-30 15:20:24 -06:00
parent 5f5dcd0cc2
commit 568b5f6759
1 changed files with 2 additions and 2 deletions

View File

@ -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(),