From c743023e68f3453b93da288535523a965fa43fe8 Mon Sep 17 00:00:00 2001 From: benwandrew Date: Wed, 2 Aug 2023 08:18:34 -0400 Subject: [PATCH 1/4] docs: add MIT license --- LICENSE | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 00000000..4274ad37 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2023 Autonomous Empirical Research Initiative + +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. From 42c5918edd0b9fa09f01f2014826be4ffe6021df Mon Sep 17 00:00:00 2001 From: benwandrew Date: Wed, 2 Aug 2023 08:19:07 -0400 Subject: [PATCH 2/4] docs: delete existing license file --- LICENSE.md | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 LICENSE.md diff --git a/LICENSE.md b/LICENSE.md deleted file mode 100644 index bc84a4a5..00000000 --- a/LICENSE.md +++ /dev/null @@ -1,20 +0,0 @@ -Copyright 2021, Brown University, Providence, RI. - - All Rights Reserved - -Permission to use, copy, modify, and distribute this software and -its documentation for any purpose other than its incorporation into a -commercial product or service is hereby granted without fee, provided -that the above copyright notice appear in all copies and that both -that copyright notice and this permission notice appear in supporting -documentation, and that the name of Brown University not be used in -advertising or publicity pertaining to distribution of the software -without specific, written prior permission. - -BROWN UNIVERSITY DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, -INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR ANY -PARTICULAR PURPOSE. IN NO EVENT SHALL BROWN UNIVERSITY BE LIABLE FOR -ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. \ No newline at end of file From 76a7afec6dfc9889c6a5c42f6181bd1be0f96338 Mon Sep 17 00:00:00 2001 From: benwandrew Date: Wed, 2 Aug 2023 08:20:48 -0400 Subject: [PATCH 3/4] chore: add license to pyproject.toml --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 265f02c9..e190f121 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,6 +6,7 @@ authors = [ { name="John Gerrard Holland", email="john_holland1@brown.edu" }, ] readme = "README.md" +license = { file = "LICENSE" } requires-python = ">=3.8,<4" dynamic = ["version"] From b50d136fdba9f5c6f2c4329524f25154cb1acc2d Mon Sep 17 00:00:00 2001 From: benwandrew Date: Wed, 2 Aug 2023 09:56:44 -0400 Subject: [PATCH 4/4] chore: remove unnecessary spaces --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index e190f121..d4fdefb6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ authors = [ { name="John Gerrard Holland", email="john_holland1@brown.edu" }, ] readme = "README.md" -license = { file = "LICENSE" } +license = {file = "LICENSE"} requires-python = ">=3.8,<4" dynamic = ["version"]