32 lines
735 B
TOML
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"
|