From c6494539908b4988a5069cd8843237c2c4e5b3a5 Mon Sep 17 00:00:00 2001 From: Jens Ahrensfeld Date: Fri, 28 Nov 2025 18:22:05 +0100 Subject: [PATCH] added pyproject.toml --- .gitignore | 6 ++++-- pyproject.toml | 19 +++++++++++++++++++ 2 files changed, 23 insertions(+), 2 deletions(-) create mode 100644 pyproject.toml diff --git a/.gitignore b/.gitignore index 4c036aa..201114e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,4 @@ -results/ -__pycache__/ \ No newline at end of file +build +results +*.egg-info +__pycache__ diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..9fb9d12 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,19 @@ +requires = [ + "setuptools>=61.0" +] +build-backend = "setuptools.build_meta" + +[project] +name = "ArPoser" +description = "Library for retrieving 3D rotaion from camera image of ArTag" +dynamic = ["version"] +requires-python = ">=3.9" +authors = [ + { name = "Jens Ahrensfeld" } +] +dependencies = [ + "opencv-python", + "opencv-contrib-python", + "scipy" +] +readme = "README.md"