You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
735 B
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "fieldpoc"
version = "0.0.1"
authors = [
{ name="clerie" },
]
description = "A simple to use, good enough phone system for medium sized DECT networks."
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: POSIX :: Linux",
"Topic :: Communications :: Telephony",
]
dependencies = [
"mitel-ommclient2",
"sqlalchemy",
"ywsd",
]
[project.scripts]
fieldpoc = "fieldpoc.run:run"
[project.urls]
"Source" = "https://git.clerie.de/clerie/fieldpoc"