-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (33 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
36 lines (33 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[project]
name = "bridgemost"
dynamic = ["version"]
description = "Multi-platform ↔ Mattermost transparent bridge. Messages appear as the real user — plugin adapter architecture."
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
authors = [
{name = "BridgeMost Contributors"},
]
keywords = ["mattermost", "bridge", "relay", "ghost", "telegram", "google-chat", "slack", "matrix", "multi-platform"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Communications :: Chat",
]
dependencies = [
"python-telegram-bot>=21.0",
"google-auth>=2.0",
"google-api-python-client>=2.0",
"google-auth-httplib2>=0.2",
"aiohttp>=3.9",
"pyyaml>=6.0",
]
[project.scripts]
bridgemost = "bridgemost.__main__:main"
[tool.setuptools.dynamic]
version = {attr = "bridgemost.__version__"}
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"