From 075af648912d092704ee99e1bc0cc444a5fbacb8 Mon Sep 17 00:00:00 2001 From: zombie-einstein <13398815+zombie-einstein@users.noreply.github.com> Date: Mon, 18 Mar 2024 13:54:23 +0000 Subject: [PATCH 1/2] Add license file --- LICENSE | 21 +++++++++++++++++++++ pyproject.toml | 1 + 2 files changed, 22 insertions(+) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..90d5fda --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2024 Zombie-Einstein + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/pyproject.toml b/pyproject.toml index b5ee450..67edfe5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,6 +4,7 @@ version = "0.1.6" description = "Jaxpr Visualisation Tool" authors = ["zombie-einstein"] readme = "README.md" +license = { file = "LICENSE" } packages = [{include = "jpviz"}] homepage = "" repository = "https://github.com/zombie-einstein/jaxpr-viz" From a735ee1307ff186c90c871c421d4dbed813886c0 Mon Sep 17 00:00:00 2001 From: zombie-einstein <13398815+zombie-einstein@users.noreply.github.com> Date: Mon, 18 Mar 2024 13:56:26 +0000 Subject: [PATCH 2/2] License must be string --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 67edfe5..fadc907 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ version = "0.1.6" description = "Jaxpr Visualisation Tool" authors = ["zombie-einstein"] readme = "README.md" -license = { file = "LICENSE" } +license = "MIT" packages = [{include = "jpviz"}] homepage = "" repository = "https://github.com/zombie-einstein/jaxpr-viz"