masto-bridges/pyproject.toml

27 lines
736 B
TOML
Raw Normal View History

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