############################################################# ## DO NOT MODIFY THIS FILE ## This file is simply used to proxy dependencies during development ## from ../services/data-product/components/schema-preview/docker-image/pyproject.toml ## to support static typing and referencing of modules from that package. ## ## All dependencies MUST be added to that file, as this file is never installed in docker build. ## In the future connectors will support full decoupling to avoid this limitation. ## ## Modules from the docker image can be referenced via `import handlers.xxxx` (eg: import handlers.common). ## Which mirrors the final runtime module structure in the docker image. ############################################################# [tool.poetry] name = "ada-connectors" version = "0.1.0" description = "Connectors" authors = ["Amazon Web Services"] license = "Apache-2.0" ## DO NOT ADD DEPENDENCIES HERES!!! [tool.poetry.dependencies] python = ">=3.7.1,<3.11" handlers = { path = "../services/data-product/components/schema-preview/docker-image", develop = true } [tool.poetry.dev-dependencies] pytest = "^7.0.1" pytest-cov = "^3.0.0" pytest-only = "^2.0.0" [build-system] requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api"