diff options
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 19 |
1 files changed, 19 insertions, 0 deletions
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 <paul@harrison.sh>"] +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" |