Переглянути джерело

update code license, add recent updates to CHANGES, update datacite.yml title

Stefan Appelhoff 2 роки тому
батько
коміт
29ea34ee0a
3 змінених файлів з 33 додано та 3 видалено
  1. 6 0
      CHANGES
  2. 5 1
      README.md
  3. 22 2
      code/source_to_bids.py

+ 6 - 0
CHANGES

@@ -6,3 +6,9 @@
     - Added Manufacturer and ManufacturersModelName to physio.json (Tobii 4C eyetracker)
     - Rephrased acknowledgements in dataset_description.json
     - Updated code/environment.yml
+
+1.0.2 2022-02-01
+    - Minor updates to README, source_to_bids.py, datacite.yml, dataset_description.json
+      in order to add links to other resources, and minor wording fixes
+    - removed unneeded code/environment.yml
+    - source_to_bids.py is now licensed under the MIT license

+ 5 - 1
README.md

@@ -53,7 +53,11 @@ The code used for data analysis can be found on GitHub and on Zenodo.
 
 ## License
 
-Please see the [LICENSE](LICENSE) file for details.
+The `source_to_bids.py` script in the `code/` directory is licensed under the MIT license.
+
+All data is licensed under the ODbL.
+See also this human readable summary: https://opendatacommons.org/licenses/odbl/summary/
+For details, please see the [LICENSE](LICENSE) file.
 
 ## Additional information
 

+ 22 - 2
code/source_to_bids.py

@@ -18,6 +18,16 @@ You need to have the following software dependencies installed for this code to
 - mne < 0.23
 
 All remaining dependencies will be installed automatically with the packages above.
+
+This code is licensed under MIT (https://opensource.org/licenses/MIT):
+
+Copyright 2022 Stefan Appelhoff
+
+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.
 """
 # %% Imports and constants
 import glob
@@ -156,7 +166,7 @@ authors:
     id: "ORCID:0000-0001-9752-932X"
 
 # A title to describe the published resource.
-title: "mpib_sp_eeg"
+title: "The mpib_sp_eeg dataset"
 
 # Additional information about the resource, e.g., a brief abstract.
 description: |
@@ -373,7 +383,11 @@ The code used for data analysis can be found on GitHub and on Zenodo.
 
 ## License
 
-Please see the [LICENSE](LICENSE) file for details.
+The `source_to_bids.py` script in the `code/` directory is licensed under the MIT license.
+
+All data is licensed under the ODbL.
+See also this human readable summary: https://opendatacommons.org/licenses/odbl/summary/
+For details, please see the [LICENSE](LICENSE) file.
 
 ## Additional information
 
@@ -456,6 +470,12 @@ def make_CHANGES(bids_root, overwrite):
     - Added Manufacturer and ManufacturersModelName to physio.json (Tobii 4C eyetracker)
     - Rephrased acknowledgements in dataset_description.json
     - Updated code/environment.yml
+
+1.0.2 2022-02-01
+    - Minor updates to README, source_to_bids.py, datacite.yml, dataset_description.json
+      in order to add links to other resources, and minor wording fixes
+    - removed unneeded code/environment.yml
+    - source_to_bids.py is now licensed under the MIT license
 """
 
     fname = op.join(bids_root, "CHANGES")