From f997bb20d09537ef628a28d717a26eeae1f4618e Mon Sep 17 00:00:00 2001 From: Todd Date: Tue, 30 Apr 2019 23:12:16 -0400 Subject: [PATCH 1/3] Add license file The MIT license requires all copies of the code include the license text. --- LICENSE | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..bd3916d --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2018-2019 Christophe-Marie Duquesne (chmd@chmd.fr) + +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 42606343fda1621082ec363a63cb611b11720312 Mon Sep 17 00:00:00 2001 From: Todd Date: Tue, 30 Apr 2019 23:18:52 -0400 Subject: [PATCH 2/3] Include license filde in sdists Also include requirements --- MANIFEST.in | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..096dd50 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,2 @@ +include LICENSE +include requirements.txt From 68b52909bcf464bfceab62f753dddaf2db49e8d5 Mon Sep 17 00:00:00 2001 From: Todd Date: Tue, 30 Apr 2019 23:19:44 -0400 Subject: [PATCH 3/3] Include tests in sdists Downstreams often use this to make sure packaging is done correctly --- MANIFEST.in | 2 ++ 1 file changed, 2 insertions(+) diff --git a/MANIFEST.in b/MANIFEST.in index 096dd50..515bec2 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,2 +1,4 @@ include LICENSE include requirements.txt +include pytest.ini +graft quickviz/tests