Summary
Switch to using `poetry` as a package manager instead of `pip`.
Among other things, this means dependencies are resolved once (at dependency addition time) instead of every time the package is installed, speeding up installations of `octue` in e.g. docker containers. This is done by recording the exact dependency versions `poetry` resolved in a `poetry.lock` file.
<!--- SKIP AUTOGENERATED NOTES --->
Contents ([396](https://github.com/octue/octue-sdk-python/pull/396))
Operations
- Add `pyproject.toml` and `poetry.lock`
- Remove `setup.py` and `requirements-dev.txt`
- Update `tox.ini` to work with Poetry
- Update CI workflows and associated config files to work with Poetry
- Update `Dockerfile` to use Poetry
- Remove irrelevant `[dataflow]` extra specified in the Dataflow `Dockerfile`
- Create new `setup.py` file mirroring `pyproject.toml` in the `octue.cloud.deployment.google.dataflow` subpackage to allow Dataflow to continue to work (this must be updated alongside `pyproject.toml`
- Update python classifiers to include 3.7 and 3.9
Dependencies
- Upgrade to `Flask==2.0.3`
<!--- END AUTOGENERATED NOTES --->