[tool.poetry] name = "masto-bridges" version = "0.1.0" description = "Crosspost between mastodon and git.social and also CalDAV for some reason" authors = ["sneakers-the-rat "] license = "AGPL-3.0" readme = "README.md" packages = [{include = "masto_bridges"}] [tool.poetry.dependencies] python = "^3.9" "Mastodon.py" = "^1.5.2" pydantic = {extras = ["dotenv", "email"], version = "^1.10.2"} rich = "^12.6.0" beautifulsoup4 = "^4.11.1" lxml = "^4.9.1" caldav = "^1.2.1" icalendar = "^5.0.7" [tool.poetry.scripts] post_last_commit = 'masto_bridges.main:post_last_commit' masto_bridgebot = 'masto_bridges.main:masto_bridgebot' [build-system] requires = ["poetry-core"] build-backend = "poetry.core.masonry.api"