From e1004720ec0c252ba87f02c190c33739d9c00f20 Mon Sep 17 00:00:00 2001 From: Monte Hoover <37886197+montebhoover@users.noreply.github.com> Date: Wed, 31 Oct 2018 10:22:17 -0700 Subject: [PATCH] Add THIRD-PARTY-NOTICES.txt and move CONTRIBUTING.md to root. (#40) * Initial checkin * Move to Hosted Mac pool * Update README.md * Manually copied naming changes over from master. * Revert "Merge remote-tracking branch 'upstream/temp/docs'" This reverts commit 93c73476e42e687c48889b58eb678b826dcbc41e, reversing changes made to 23500695a07b587f4b15420c874514940b42c74b. * Improve documentation regarding contributors. * Fix email address. --- .../contributing.md => CONTRIBUTING.md | 4 +- THIRD-PARTY-NOTICES.txt | 62 +++++++++++++++++++ docs/README.md | 2 +- docs/project-docs/style-guide.md | 2 +- 4 files changed, 66 insertions(+), 4 deletions(-) rename docs/project-docs/contributing.md => CONTRIBUTING.md (82%) create mode 100644 THIRD-PARTY-NOTICES.txt diff --git a/docs/project-docs/contributing.md b/CONTRIBUTING.md similarity index 82% rename from docs/project-docs/contributing.md rename to CONTRIBUTING.md index c6aa83a6..1677ca60 100644 --- a/docs/project-docs/contributing.md +++ b/CONTRIBUTING.md @@ -1,6 +1,6 @@ # Welcome! -If you are here, it means you are interested in helping us out. A hearty welcome and thank you! There are many ways you can contribute to the NimbusML project: +If you are here, it means you are interested in helping us out. A hearty welcome and thank you! While this is an experimental project, we will make our best effort to respond to feedback and issues. If you would like to join the effort, here are ways you can contribute to the NimbusML project: * Offer PRs to fix bugs or implement new features. * Give us feedback and bug reports regarding the software or the documentation. @@ -24,7 +24,7 @@ All commits in a pull request will be squashed to a single commit with the origi ## Style Guide -See the [Style Guide](style-guide.md) for information about coding styles, source structure, making pull requests, and more. +See the [Style Guide](docs/project-docs/style-guide.md) for information about coding styles, source structure, making pull requests, and more. ## Building and Devleopment diff --git a/THIRD-PARTY-NOTICES.txt b/THIRD-PARTY-NOTICES.txt new file mode 100644 index 00000000..b32bf992 --- /dev/null +++ b/THIRD-PARTY-NOTICES.txt @@ -0,0 +1,62 @@ +NimbusML uses third-party libraries or other resources that may be +distributed under licenses different than the NimbusML software. + +In the event that we accidentally failed to list a required notice, please +bring it to our attention. Post an issue or email us: + + nimbusml@microsoft.com + +The attached notices are provided for information only. + +License notice for ML.NET +------------------------- + +https://github.com/dotnet/machinelearning + + +MIT License + +Copyright (c) 2018 .NET Foundation + +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. + +License notice for .NET Core CLR +-------------------------------- + +MIT License + +Copyright (c) 2018 .NET Foundation + +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/docs/README.md b/docs/README.md index fcfb4cb0..12633350 100644 --- a/docs/README.md +++ b/docs/README.md @@ -12,4 +12,4 @@ Project Docs - [API](https://docs.microsoft.com/en-us/nimbusml/overview) - [Tutorials](https://docs.microsoft.com/en-us/nimbusml/tutorials) - [Developer Guide](developers/developer-guide.md) -- [Contributing to ML.NET](project-docs/contributing.md) +- [Contributing to ML.NET](CONTRIBUTING.md) diff --git a/docs/project-docs/style-guide.md b/docs/project-docs/style-guide.md index 5aeab21f..867a2dcc 100644 --- a/docs/project-docs/style-guide.md +++ b/docs/project-docs/style-guide.md @@ -1,4 +1,4 @@ -Contributing to Machine Learning +Contributing to NimbusML ====================== This document describes contribution guidelines that are specific to NimbusML. Please read [Python Style Guide](https://www.python.org/dev/peps/pep-0008/) for more general Python style guidelines.