Changeset View
Changeset View
Standalone View
Standalone View
requirements.txt
# Add here external Python modules dependencies, one per line. Module names | # Add here external Python modules dependencies, one per line. Module names | ||||
# should match https://pypi.python.org/pypi names. For the full spec or | # should match https://pypi.python.org/pypi names. For the full spec or | ||||
# dependency lines, see https://pip.readthedocs.org/en/1.1/requirements.html | # dependency lines, see https://pip.readthedocs.org/en/1.1/requirements.html | ||||
# remote storage API server | # remote storage API server | ||||
aiohttp >= 3 | aiohttp >= 3 | ||||
click | click | ||||
requests | requests | ||||
psycopg2 | |||||
sh | |||||
vlorentz: Could you use subprocess instead? The API may be a little less nice, but it saves us an extra… | |||||
dacharyAuthorUnsubmitted Done Inline ActionsThe upside of using sh vs subprocess is also that it is significantly less code to do the same. But if you think this advantage is not worth the extra dependency, I'll be happy to do the extra work. dachary: The upside of using sh vs subprocess is also that it is significantly less code to do the same. | |||||
# optional dependencies | # optional dependencies | ||||
# apache-libcloud | # apache-libcloud | ||||
# azure-storage-blob >= 12.0 | # azure-storage-blob >= 12.0 |
Could you use subprocess instead? The API may be a little less nice, but it saves us an extra dependency.