I am trying to deploy to scrapinghub with python packages in local folders. My folder structure is like so: | scrapinghub.yml | requirements.txt | myscraper | dependencies | - mydependency | - - setup.py | - - requirements.txt | - mydependency2 | - - setup.py | - - requirements.txt
William Sackfield
I am trying to deploy to scrapinghub with python packages in local folders. My folder structure is like so:
| scrapinghub.yml
| requirements.txt
| myscraper
| dependencies
| - mydependency
| - - setup.py
| - - requirements.txt
| - mydependency2
| - - setup.py
| - - requirements.txt
My requirements.txt looks like so:
I receive the following error when deploying:
"ERROR: dependencies/mydependency should either be a path to a local project or a VCS url"
As far as I can tell, all the folders are in the correct places. Is this a known issue when deploying with shub?