From a879a7c48c0608592668c27b01f71a7ef7753bbe Mon Sep 17 00:00:00 2001 From: wjr21 Date: Sun, 20 Oct 2024 23:59:32 +0100 Subject: [PATCH] Updating package name and dev dependency --- pyproject.toml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 991ebf7..a807ab3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,7 +14,7 @@ version_file = "src/h5forest/_version.py" [project] dynamic = ["version"] -name = "hdf5-forest" +name = "h5forest" description = "A tool to view HDF5 file structures in the terminal." authors = [{name = "Will Roper", email = "w.roper@sussex.ac.uk"}] license = {file = "LICENSE"} @@ -28,6 +28,10 @@ dependencies = [ "matplotlib", ] +# Add special dependencies for development +[project.optional-dependencies] +dev = ["ruff", ] + [project.urls] "Homepage" = "https://github.com/WillJRoper/h5forest" "Repository" = "https://github.com/WillJRoper/h5forest"