-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
38 lines (30 loc) · 1.02 KB
/
pyproject.toml
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
37
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "matrix-registration-bot"
description = "A bot to manage user registration tokens on a matrix server."
keywords = ["matrix", "registration", "bot", "user", "registration", "API" ]
license = {text = "AGPL-3.0-or-later"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
dependencies = [
"simplematrixbotlib>=2.7.3,<3.0.0",
"pyyaml",
"matrix-nio[e2e]",
"aiohttp[speedups]",
]
dynamic = ["version", "readme"]
[project.scripts]
matrix-registration-bot = "matrix_registration_bot.bot:run_bot"
[tool.setuptools.packages]
find = {}
[tool.setuptools.dynamic]
version = {attr = "matrix_registration_bot.__version__"}
readme = {file = "README.rst"}