Add packaging

This commit is contained in:
clerie 2022-07-06 13:33:31 +02:00
parent 9394f6376b
commit 548f6beb9f
2 changed files with 30 additions and 0 deletions

1
.gitignore vendored
View File

@ -1 +1,2 @@
__pycache__
dist/

29
pyproject.toml Normal file
View File

@ -0,0 +1,29 @@
[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",
]
[project.scripts]
fieldpoc = "fieldpoc.run:run"
[project.urls]
"Source" = "https://git.clerie.de/clerie/fieldpoc"