30 lines
778 B
TOML
30 lines
778 B
TOML
[build-system]
|
|
requires = ["setuptools", "setuptools-scm"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "aioappsrv"
|
|
authors = [
|
|
{name = "alemi", email = "me@alemi.dev"},
|
|
{name = "git-bruh", email = "<e817509a-8ee9-4332-b0ad-3a6bdf9ab63f@aleeas.com>"},
|
|
]
|
|
description = "simple and asynchronous matrix appservice framework"
|
|
readme = "README.md"
|
|
requires-python = ">=3.7"
|
|
keywords = ["matrix", "appservice", "bot", "bridge"]
|
|
dynamic = ["version"]
|
|
license = {file = "LICENSE"}
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
]
|
|
dependencies = [
|
|
"bottle",
|
|
"markdown",
|
|
"urllib3",
|
|
"websockets",
|
|
]
|
|
|
|
[tool.setuptools_scm]
|
|
write_to = "src/aioappsrv/__version__.py"
|