2023-05-08 17:04:32 +03:00
|
|
|
[build-system]
|
|
|
|
requires = ["flit_core >=3.2,<4"]
|
|
|
|
build-backend = "flit_core.buildapi"
|
|
|
|
|
|
|
|
[project]
|
|
|
|
name = "mastoposter"
|
|
|
|
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"]
|
|
|
|
requires-python = ">=3.7"
|
|
|
|
dependencies = [
|
|
|
|
"Jinja2",
|
|
|
|
"beautifulsoup4",
|
|
|
|
"emoji",
|
|
|
|
"httpx",
|
|
|
|
"websockets"
|
|
|
|
]
|
|
|
|
dynamic = ["version", "description"]
|
|
|
|
|
|
|
|
[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/*"]
|