diff --git a/Changelog.md b/Changelog.md index afc19cb88f84d8d6fb885f60c8e553146aa54d91..6cea41651fa738c53adfe0598973948ab214fcb6 100644 --- a/Changelog.md +++ b/Changelog.md @@ -2,6 +2,9 @@ All notable changes to this project will be documented in this file. +## [0.98] - 2022-10-17 +- POL1-624: Changed GWS Direct config to support GTT as ISP + ## [0.97] - 2022-09-26 - DBOARD3-643: Added contact info diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000000000000000000000000000000000000..20a8a171b618628257e6e92e58dc35d924bbedf2 --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2022 GÉANT Vereniging + +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. \ No newline at end of file diff --git a/inventory_provider/config.py b/inventory_provider/config.py index f332f5bb2bdf60b66c99c231addf5f0c23fcc94e..93aaa3876744741023cba81cec4f8ab0b50a476b 100644 --- a/inventory_provider/config.py +++ b/inventory_provider/config.py @@ -163,7 +163,7 @@ CONFIG_SCHEMA = { 'nren': {'type': 'string'}, 'isp': { 'type': 'string', - 'enum': ['Cogent', 'Telia', 'CenturyLink'] + 'enum': ['Cogent', 'Telia', 'CenturyLink', 'GTT'] }, 'hosts': { 'type': 'array', diff --git a/setup.py b/setup.py index 41e50091de232bdf7b4f2c904b8e4e0e5ed99866..d4a9ba7119688d4119456dfaedb80ee87eb62884 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages setup( name='inventory-provider', - version="0.97", + version="0.98", author='GEANT', author_email='swd@geant.org', description='Dashboard inventory provider', @@ -33,4 +33,17 @@ setup( ] }, include_package_data=True, + license='MIT', + license_files=('LICENSE.txt',), + classifiers=[ + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', + 'License :: OSI Approved :: MIT License', + 'Operating System :: OS Independent', + 'Development Status :: 5 - Production/Stable' + ], + python_requires='>=3.6' )