From 622d1ab1307a64b3bc2543e7833802ab331bb649 Mon Sep 17 00:00:00 2001 From: edeymc Date: Wed, 5 Nov 2025 18:47:08 -0800 Subject: [PATCH] Added pyproject.toml --- ParaUtils/pyproject.toml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 ParaUtils/pyproject.toml diff --git a/ParaUtils/pyproject.toml b/ParaUtils/pyproject.toml new file mode 100644 index 0000000..1acbd15 --- /dev/null +++ b/ParaUtils/pyproject.toml @@ -0,0 +1,23 @@ +[project] +name = "ParaUtil" +description = "Bits and bobs useful for many para swimming data manipulation projects" +readme = "README.md" +license = "MIT" +dynamic = ["version"] + +dependencies = [ + "pandas", + "numpy" +] +requires-python = ">=3.8" + +authors = [ + {name = "Michael Edey", email = "mike@edey.org"} +] +maintainers = [ + {name = "Michael Edey", email = "mike@edey.org"} +] + +[project.urls] +Homepage = "https://git.edey.org/Mike/ParaUtils.git" +Repository = "https://git.edey.org/Mike/ParaUtils.git"