[build-system] requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] version = "1.0.31" name = "source-rss" description = "Source implementation for rss." authors = [ "Airbyte ",] license = "ELv2" readme = "README.md" documentation = "https://docs.airbyte.com/integrations/sources/rss" homepage = "https://airbyte.com" repository = "https://github.com/airbytehq/airbyte" packages = [ { include = "source_rss" }, { include = "main.py" } ] [tool.poetry.dependencies] python = "^3.9,<3.12" airbyte-cdk = "^0" pytz = "2022.6" feedparser = "6.0.10" [tool.poetry.scripts] source-rss = "source_rss.run:run" [tool.poetry.group.dev.dependencies] requests-mock = "*" pytest-mock = "*" pytest = "*" [tool.poe] include = [ # Shared tasks definition file(s) can be imported here. # Run `poe` or `poe --help` to see the list of available tasks. "${POE_GIT_DIR}/poe-tasks/poetry-connector-tasks.toml", ]