add python async

This commit is contained in:
saces 2026-03-11 18:02:28 +01:00
parent 87ffdd7bb3
commit d58ea40593
15 changed files with 297 additions and 91 deletions

View file

@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "smal"
version = "0.0.1"
requires-python = ">=3.11"
requires-python = ">=3.10"
description = "smal - simple matrix application library"
authors = [{ name = "saces" }]
license = "AGPL-3.0-only"
@ -16,8 +16,10 @@ classifiers = [
]
dependencies = [
"asyncio",
"cffi>=2.0.0",
"click",
"pygomx>=0.0.2"
]
[tool.setuptools.package-dir]
@ -38,3 +40,4 @@ mxclearaccount = "pymxutils.mxutils:clearaccount"
mxserverinfo = "pymxutils.mxutils:serverinfo"
smalsetup = "smal.smalsetup:smalsetup"
demobot = "demobot:main"
simplebot = "demobot.simple:main"