30 lines
891 B
TOML
30 lines
891 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "synapse-invite-checker"
|
|
description = 'Synapse module to invite permissions'
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
license = "AGPL-3.0-only"
|
|
keywords = []
|
|
authors = [
|
|
{ name = "Nils Büchner", email = "n.buechner@ubuntu.com" },
|
|
]
|
|
classifiers = [
|
|
"Development Status :: 4 - Beta",
|
|
"Programming Language :: Python",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: Implementation :: CPython",
|
|
"Programming Language :: Python :: Implementation :: PyPy",
|
|
]
|
|
dependencies = [
|
|
"matrix-synapse"
|
|
]
|
|
version = "0.2.0"
|
|
|
|
[project.urls]
|
|
Documentation = "https://github.com/famedly/synapse-invite-checker#synapse-invite-checker"
|
|
Issues = "https://github.com/famedly/synapse-invite-checker/-/issues"
|
|
Source = "https://github.com/famedly/synapse-invite-checker/"
|