Changed to MPL

This commit is contained in:
Rob McMullen 2021-05-04 09:41:05 -07:00
parent da18f868ed
commit 3398ae6b2a
3 changed files with 380 additions and 691 deletions

1047
LICENSE

File diff suppressed because it is too large Load Diff

View File

@ -171,27 +171,17 @@ License
==========
AsmGen, the 6502 code generator sponsored by the Player/Missile Podcast
Copyright (c) 2017-2020 Rob McMullen
Copyright (c) 2017-2021 Rob McMullen
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at https://mozilla.org/MPL/2.0/.
Generated Code License
----------------------
While the code for AsmGen itself is licensed under the GPLv3, the code it
While the code for AsmGen itself is licensed under the MPL 2.0, the code it
produces is licensed under the the Creative Commons Attribution 4.0
International (CC BY 4.0), so you are free to use the generated code for
commercial or non-commercial purposes.

View File

@ -18,11 +18,11 @@ setup(name="asmgen",
scripts=scripts,
description="6502 code generator for Apple ][ and Atari 8-bit",
long_description=long_description,
license="GPL",
license="MPL 2.0",
classifiers=[
"Programming Language :: Python :: 3.6",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License (GPL)",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
],