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"