2023-05-08 17:04:32 +03:00
|
|
|
[build-system]
|
|
|
|
requires = ["flit_core >=3.2,<4"]
|
|
|
|
build-backend = "flit_core.buildapi"
|
|
|
|
|
|
|
|
[project]
|
|
|
|
name = "mastoposter"
|
2023-05-10 11:48:50 +03:00
|
|
|
description = "Configurable reposter from Mastodon-compatible Fediverse servers"
|
2023-05-08 17:04:32 +03:00
|
|
|
authors = [
|
|
|
|
{name = "hatkidchan", email = "hatkidchan@gmail.com"}
|
|
|
|
]
|
|
|
|
readme = "README.md"
|
|
|
|
license = {file = "LICENSE"}
|
|
|
|
classifiers = [
|
|
|
|
"Environment :: No Input/Output (Daemon)",
|
|
|
|
"Intended Audience :: End Users/Desktop",
|
|
|
|
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
|
|
|
|
"Topic :: Communications",
|
|
|
|
"Topic :: Internet :: WWW/HTTP"
|
|
|
|
]
|
|
|
|
keywords = ["mastodon", "discord", "telegram"]
|
2023-05-10 11:48:50 +03:00
|
|
|
requires-python = ">=3.8"
|
2023-05-08 17:04:32 +03:00
|
|
|
dependencies = [
|
|
|
|
"Jinja2",
|
2023-05-10 11:48:50 +03:00
|
|
|
"beautifulsoup4[lxml]",
|
2023-05-08 17:04:32 +03:00
|
|
|
"emoji",
|
|
|
|
"httpx",
|
|
|
|
"websockets"
|
|
|
|
]
|
2023-05-10 11:48:50 +03:00
|
|
|
dynamic = ["version"]
|
2023-05-08 17:04:32 +03:00
|
|
|
|
2023-05-13 10:07:03 +03:00
|
|
|
[project.optional-dependencies]
|
|
|
|
test = [
|
|
|
|
"pytest"
|
|
|
|
]
|
|
|
|
|
2023-05-08 17:04:32 +03:00
|
|
|
[project.urls]
|
|
|
|
Source = "https://github.com/hatkidchan/mastoposter"
|
|
|
|
|
|
|
|
[project.scripts]
|
|
|
|
mastoposter = "mastoposter.__main__:main"
|
|
|
|
|
|
|
|
[tool.flit.sdist]
|
2023-05-10 04:50:14 +03:00
|
|
|
include = ["config.ini", "contrib/*"]
|
2023-05-10 09:19:22 +03:00
|
|
|
|
|
|
|
[tool.black]
|
|
|
|
line-length = 79
|
|
|
|
target-version = ['py37', 'py38']
|
|
|
|
|
|
|
|
[tool.mypy]
|
|
|
|
warn_return_any = true
|
|
|
|
warn_unused_configs = true
|
|
|
|
check_untyped_defs = true
|