masto-bridges/pyproject.toml

25 lines
677 B
TOML

[tool.poetry]
name = "masto-gitsocial-bridge"
version = "0.1.0"
description = "Crosspost between mastodon and git.social"
authors = ["sneakers-the-rat <JLSaunders987@gmail.com>"]
license = "AGPL-3.0"
readme = "README.md"
packages = [{include = "masto_git_bridge"}]
[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"
[tool.poetry.scripts]
post_last_commit = 'masto_git_bridge.main:post_last_commit'
masto_gitbot = 'masto_git_bridge.main:masto_gitbot'
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"