diff --git a/.gitignore b/.gitignore index bee8a64..a5cd500 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ __pycache__ +dist/ diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..01e9e1a --- /dev/null +++ b/pyproject.toml @@ -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"