2026-01-12 17:39:34 +01:00
|
|
|
[build-system]
|
|
|
|
|
requires = ["setuptools"]
|
|
|
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
|
|
|
|
|
|
[project]
|
|
|
|
|
name = "smal"
|
|
|
|
|
version = "0.0.1"
|
|
|
|
|
requires-python = ">=3.11"
|
|
|
|
|
description = "smal - simple matrix application library"
|
|
|
|
|
authors = [{ name = "saces" }]
|
|
|
|
|
license = "AGPL-3.0-only"
|
|
|
|
|
readme = "README"
|
|
|
|
|
classifiers = [
|
|
|
|
|
"Development Status :: 3 - Alpha",
|
|
|
|
|
"Programming Language :: Python",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[tool.setuptools.package-dir]
|
2026-01-18 09:30:23 +01:00
|
|
|
"pymxutils" = "src/pymxutils"
|
2026-01-12 17:39:34 +01:00
|
|
|
"smal" = "src/smal"
|
|
|
|
|
"smbl" = "src/smbl"
|
|
|
|
|
|
|
|
|
|
[project.urls]
|
2026-01-18 09:26:05 +01:00
|
|
|
repository = "https://codeberg.org/saces/pygomx"
|
2026-01-12 17:39:34 +01:00
|
|
|
|
|
|
|
|
[tool.distutils.egg_info]
|
|
|
|
|
egg_base = "/tmp"
|
|
|
|
|
|
|
|
|
|
[project.scripts]
|
2026-01-18 09:30:23 +01:00
|
|
|
mxdiscover = "pymxutils.mxutils:discoverhs"
|
|
|
|
|
mxwhoami = "pymxutils.mxutils:whoami"
|
|
|
|
|
mxtoken = "pymxutils.mxutils:mktoken"
|
|
|
|
|
mxaccountinfo = "pymxutils.mxutils:accountinfo"
|
|
|
|
|
mxclearaccount = "pymxutils.mxutils:clearaccount"
|
|
|
|
|
mxserverinfo = "pymxutils.mxutils:serverinfo"
|
2026-01-18 14:49:09 +01:00
|
|
|
smalsetup = "smal.smalsetup:smalsetup"
|