From c66ea168ba4a6fbc6acd8e0e92e299c9649dbdf3 Mon Sep 17 00:00:00 2001 From: Paul Harrison Date: Sat, 31 Aug 2024 15:45:16 +0100 Subject: Add initial project structure --- pyproject.toml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 pyproject.toml (limited to 'pyproject.toml') diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..cfd170b --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,19 @@ +[tool.poetry] +name = "analysis" +version = "0.1.0" +description = "" +authors = ["Paul Harrison "] +readme = "README.md" +packages = [{include = "analysis", from = "src"}] + +[tool.poetry.dependencies] +python = ">=3.12,<3.13" +jupyter = "^1.1.1" +numpy = "^2.1.0" +pandas = "^2.2.2" +matplotlib = "^3.9.2" +seaborn = "^0.13.2" + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" -- cgit v1.2.3