2022-11-08 03:13:35 +00:00
|
|
|
[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"}
|
2022-11-08 06:13:05 +00:00
|
|
|
rich = "^12.6.0"
|
|
|
|
beautifulsoup4 = "^4.11.1"
|
|
|
|
lxml = "^4.9.1"
|
2022-11-08 03:13:35 +00:00
|
|
|
|
2022-11-08 06:13:05 +00:00
|
|
|
[tool.poetry.scripts]
|
|
|
|
post_last_commit = 'masto_git_bridge.main:post_last_commit'
|
|
|
|
masto_gitbot = 'masto_git_bridge.main:masto_gitbot'
|
2022-11-08 03:13:35 +00:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|