Merge pull request #1345 from moreati/oi-mate-wheres-your-loicense

Fix and formalise license metadata
pull/1341/head
Alex Willmer 1 month ago committed by GitHub
commit 3c648f7df8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -23,6 +23,8 @@ In progress (unreleased)
* :gh:issue:`1266` Import cleanups
* :gh:issue:`1266` :mod:`ansible_mitogen`: De-duplicate sys.path manipulations
* :gh:issue:`1344` Correct SPDX license declarations
* :gh:issue:`1344` Declare BSD-3-Clause SPDX license in package metadata
v0.3.29 (2025-09-18)

@ -1,5 +1,5 @@
# SPDX-FileCopyrightText: 2025 Mitogen authors <https://github.com/mitogen-hq>
# SPDX-License-Identifier: MIT
# SPDX-License-Identifier: BSD-3-Clause
# !mitogen: minify_safe
import sys

@ -1,5 +1,5 @@
# SPDX-FileCopyrightText: 2025 Mitogen authors <https://github.com/mitogen-hq>
# SPDX-License-Identifier: MIT
# SPDX-License-Identifier: BSD-3-Clause
# !mitogen: minify_safe
import array

@ -1,5 +1,5 @@
# SPDX-FileCopyrightText: 2025 Mitogen authors <https://github.com/mitogen-hq>
# SPDX-License-Identifier: MIT
# SPDX-License-Identifier: BSD-3-Clause
# !mitogen: minify_safe
import opcode

@ -1,5 +1,5 @@
# SPDX-FileCopyrightText: 2025 Mitogen authors <https://github.com/mitogen-hq>
# SPDX-License-Identifier: MIT
# SPDX-License-Identifier: BSD-3-Clause
# !mitogen: minify_safe
import opcode

@ -79,7 +79,7 @@ setup(
long_description = long_description(),
long_description_content_type='text/markdown',
author = 'David Wilson',
license = 'New BSD',
license = 'BSD-3-Clause',
url = 'https://github.com/mitogen-hq/mitogen/',
packages = find_packages(exclude=['tests', 'examples']),
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*',
@ -88,7 +88,6 @@ setup(
'Environment :: Console',
'Framework :: Ansible',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Programming Language :: Python',

Loading…
Cancel
Save