2021-04-18 16:10:45 +02:00
|
|
|
[tool.poetry]
|
2021-08-16 10:49:52 +02:00
|
|
|
name = "mobilizon-reshare"
|
2022-04-04 11:35:24 +02:00
|
|
|
version = "0.3.0"
|
2021-10-05 15:32:18 +02:00
|
|
|
description = "A suite to reshare Mobilizon events on a broad selection of platforms"
|
|
|
|
readme = "README.md"
|
|
|
|
homepage = "https://github.com/Tech-Workers-Coalition-Italia/mobilizon-reshare"
|
|
|
|
repository = "https://github.com/Tech-Workers-Coalition-Italia/mobilizon-reshare"
|
2021-04-18 16:10:45 +02:00
|
|
|
authors = ["Simone Robutti <simone.robutti@protonmail.com>"]
|
2021-10-05 15:32:18 +02:00
|
|
|
license = "Coopyleft"
|
2021-04-18 16:10:45 +02:00
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2021-05-02 18:31:57 +02:00
|
|
|
python = "^3.9"
|
2022-01-03 20:14:31 +01:00
|
|
|
dynaconf = "~3.1"
|
2022-02-16 12:23:31 +01:00
|
|
|
tortoise-orm = "~0.18"
|
|
|
|
aiosqlite = "~0.17"
|
|
|
|
Jinja2 = "~3.0"
|
2022-03-12 11:29:56 +01:00
|
|
|
requests = "~2.26"
|
2022-01-03 20:14:31 +01:00
|
|
|
arrow = "~1.1"
|
|
|
|
click = "~8.0"
|
2022-02-16 12:23:31 +01:00
|
|
|
beautifulsoup4 = "~4.10"
|
|
|
|
markdownify = "~0.10"
|
2022-01-03 20:14:31 +01:00
|
|
|
appdirs = "~1.4"
|
2022-03-12 11:29:56 +01:00
|
|
|
tweepy = "~4.4"
|
2022-02-16 12:23:31 +01:00
|
|
|
facebook-sdk = "~3.1"
|
2022-01-03 20:14:31 +01:00
|
|
|
aerich = "~0.6"
|
2021-04-18 16:10:45 +02:00
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
2022-01-03 20:14:31 +01:00
|
|
|
responses = "~0.13"
|
|
|
|
pytest-asyncio = "~0.15"
|
|
|
|
asynctest = "~0.13"
|
|
|
|
pytest = "~6.2"
|
|
|
|
pytest-cov = "~2.8"
|
|
|
|
pytest-lazy-fixture = "~0.6"
|
2022-02-23 17:29:37 +01:00
|
|
|
Sphinx = "~4.4"
|
|
|
|
sphinxcontrib-napoleon = "~0.7"
|
|
|
|
sphinx-material = "~0.0"
|
|
|
|
sphinx-autodoc-typehints = "~1.17"
|
2021-04-18 16:10:45 +02:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core>=1.0.0"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|
2021-07-05 21:58:29 +02:00
|
|
|
|
|
|
|
[tool.poetry.scripts]
|
2021-08-16 10:49:52 +02:00
|
|
|
mobilizon-reshare="mobilizon_reshare.cli.cli:mobilizon_reshare"
|
2022-02-23 17:29:37 +01:00
|
|
|
|