Mobilizon-Reshare-condividi.../pyproject.toml

42 lines
1.1 KiB
TOML
Raw Normal View History

2021-04-18 16:10:45 +02:00
[tool.poetry]
name = "mobilizon-reshare"
2021-09-28 11:40:04 +02:00
version = "0.1.0"
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>"]
license = "Coopyleft"
2021-04-18 16:10:45 +02:00
[tool.poetry.dependencies]
2021-05-02 18:31:57 +02:00
python = "^3.9"
dynaconf = "^3.1"
2021-05-03 17:26:34 +02:00
tortoise-orm = "^0.17"
aiosqlite = "^0.16"
Jinja2 = "^2.11"
requests = "^2.25"
arrow = "^1.1"
click = "^8.0"
beautifulsoup4 = "^4.9"
markdownify = "^0.9"
appdirs = "^1.4"
2021-11-28 17:27:12 +01:00
tweepy = "^4.1"
facebook-sdk = {git = "https://github.com/mobolic/facebook-sdk.git"}
2021-12-04 14:40:34 +01:00
aerich = "^0.5.8"
2021-04-18 16:10:45 +02:00
[tool.poetry.dev-dependencies]
responses = "^0.13"
pytest-asyncio = "^0.15"
asynctest = "^0.13"
pytest = "^6.2"
2021-11-28 17:27:12 +01:00
pytest-cov = "^2.8"
pytest-lazy-fixture = "^0.6"
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]
mobilizon-reshare="mobilizon_reshare.cli.cli:mobilizon_reshare"
2021-11-27 18:47:43 +01:00