diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e14360..ec91285 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ ## [Unreleased] +- Updated license from NCSA to MIT + ## [0.1.0] - 2023-10-27 - Initial release diff --git a/LICENSE.txt b/LICENSE.txt index 47fbd20..41ecc3e 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,13 +1,8 @@ -Copyright © 2023 Species File Group. All rights reserved. +Copyright © 2024 Species File Group. All rights reserved. -Developed by: Species File Group -Illinois Natural History Survey -https://github.com/SpeciesFileGroup/bananompy +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: -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal with 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. - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimers. - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimers in the documentation and/or other materials provided with the distribution. - Neither the names of , nor the names of its contributors may be used to endorse or promote products derived from this Software without specific prior written permission. +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. -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 CONTRIBUTORS 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 WITH THE SOFTWARE. \ No newline at end of file diff --git a/README.md b/README.md index ce80b16..3377916 100644 --- a/README.md +++ b/README.md @@ -152,7 +152,7 @@ Bug reports and pull requests are welcome on GitHub at https://github.com/Specie ## License -The package is available as open source under the terms of the [NCSA/Illinois](https://github.com/SpeciesFileGroup/bananompy/blob/main/LICENSE.txt) license. You can learn more about the NCSA license on [Wikipedia](https://en.wikipedia.org/wiki/University_of_Illinois/NCSA_Open_Source_License) and compare it with other open source licenses at the [Open Source Initiative](https://opensource.org/license/uoi-ncsa-php/). +The package is available as open source under the terms of the [MIT](https://github.com/SpeciesFileGroup/bananompy/blob/main/LICENSE.txt) license. You can learn more about the MIT license on [Wikipedia](https://en.wikipedia.org/wiki/MIT_License) and compare it with other open source licenses at the [Open Source Initiative](https://opensource.org/license/mit). ## Code of Conduct diff --git a/bananompy/package_metadata.py b/bananompy/package_metadata.py index 0aca0c8..330b85a 100644 --- a/bananompy/package_metadata.py +++ b/bananompy/package_metadata.py @@ -1,4 +1,4 @@ __version__ = "0.0.1" __title__ = "bananompy" __author__ = "Geoff Ower" -__license__ = "NCSA" +__license__ = "MIT" diff --git a/setup.py b/setup.py index 40e5722..6e71a5e 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ author_email="gdower@illinois.edu", url="http://github.com/speciesfilegroup/bananompy", download_url="https://github.com/speciesfilegroup/bananompy/archive/refs/tags/v0.0.1.tar.gz", - license="NCSA", + license="MIT", packages=find_packages(exclude=["test-*"]), install_requires=[ "requests>2.7", @@ -43,11 +43,12 @@ "Intended Audience :: Science/Research", "Topic :: Scientific/Engineering :: Bio-Informatics", "Natural Language :: English", - "License :: OSI Approved :: University of Illinois/NCSA Open Source License", + "License :: OSI Approved :: MIT License", "Programming Language :: Python", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", - "Programming Language :: Python :: 3.11" + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12" ], keywords = ['bionomia', 'biodiversity', 'collectors', 'specimens', 'API', 'web-services', 'species', 'natural history', 'taxonomists', 'biologists'], )