added pyproject.toml

This commit is contained in:
2025-11-28 18:22:05 +01:00
parent fda8e9d573
commit c649453990
2 changed files with 23 additions and 2 deletions
+4 -2
View File
@@ -1,2 +1,4 @@
results/
__pycache__/
build
results
*.egg-info
__pycache__
+19
View File
@@ -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"