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:
parent
5f5dcd0cc2
commit
568b5f6759
4
setup.py
4
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(),
|
||||
|
|
Loading…
Reference in New Issue