Skip to content

Commit e465eaa

Browse files
committed
Relicensing cfncluster to Apache License 2.0
1 parent 74e07d1 commit e465eaa

8 files changed

+218
-93
lines changed

LICENSE.txt

+201-76
Large diffs are not rendered by default.

cli/cfncluster/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Copyright 2013-2014 Amazon.com, Inc. or its affiliates. All Rights Reserved.
22
#
3-
# Licensed under the Amazon Software License (the "License"). You may not use this file except in compliance with the
3+
# Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the
44
# License. A copy of the License is located at
55
#
6-
# http://aws.amazon.com/asl/
6+
# http://aws.amazon.com/apache2.0/
77
#
88
# or in the "LICENSE.txt" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES
99
# OR CONDITIONS OF ANY KIND, express or implied. See the License for the specific language governing permissions and

cli/cfncluster/cfncluster.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Copyright 2013-2014 Amazon.com, Inc. or its affiliates. All Rights Reserved.
22
#
3-
# Licensed under the Amazon Software License (the "License"). You may not use this file except in compliance with the
3+
# Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the
44
# License. A copy of the License is located at
55
#
6-
# http://aws.amazon.com/asl/
6+
# http://aws.amazon.com/apache2.0/
77
#
88
# or in the "LICENSE.txt" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES
99
# OR CONDITIONS OF ANY KIND, express or implied. See the License for the specific language governing permissions and

cli/cfncluster/cfnconfig.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Copyright 2013-2014 Amazon.com, Inc. or its affiliates. All Rights Reserved.
22
#
3-
# Licensed under the Amazon Software License (the "License"). You may not use this file except in compliance with the
3+
# Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the
44
# License. A copy of the License is located at
55
#
6-
# http://aws.amazon.com/asl/
6+
# http://aws.amazon.com/apache2.0/
77
#
88
# or in the "LICENSE.txt" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES
99
# OR CONDITIONS OF ANY KIND, express or implied. See the License for the specific language governing permissions and

cli/cfncluster/cli.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Copyright 2013-2014 Amazon.com, Inc. or its affiliates. All Rights Reserved.
22
#
3-
# Licensed under the Amazon Software License (the "License"). You may not use this file except in compliance with the
3+
# Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the
44
# License. A copy of the License is located at
55
#
6-
# http://aws.amazon.com/asl/
6+
# http://aws.amazon.com/apache2.0/
77
#
88
# or in the "LICENSE.txt" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES
99
# OR CONDITIONS OF ANY KIND, express or implied. See the License for the specific language governing permissions and

cli/cfncluster/config_sanity.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Copyright 2013-2014 Amazon.com, Inc. or its affiliates. All Rights Reserved.
22
#
3-
# Licensed under the Amazon Software License (the "License"). You may not use this file except in compliance with the
3+
# Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the
44
# License. A copy of the License is located at
55
#
6-
# http://aws.amazon.com/asl/
6+
# http://aws.amazon.com/apache2.0/
77
#
88
# or in the "LICENSE.txt" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES
99
# OR CONDITIONS OF ANY KIND, express or implied. See the License for the specific language governing permissions and

cli/cfncluster/easyconfig.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Copyright 2013-2014 Amazon.com, Inc. or its affiliates. All Rights Reserved.
22
#
3-
# Licensed under the Amazon Software License (the 'License'). You may not use this file except in compliance with the
3+
# Licensed under the Apache License, Version 2.0 (the 'License'). You may not use this file except in compliance with the
44
# License. A copy of the License is located at
55
#
6-
# http://aws.amazon.com/asl/
6+
# http://aws.amazon.com/apache2.0/
77
#
88
# or in the 'LICENSE.txt' file accompanying this file. This file is distributed on an 'AS IS' BASIS, WITHOUT WARRANTIES
99
# OR CONDITIONS OF ANY KIND, express or implied. See the License for the specific language governing permissions and

cli/setup.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Copyright 2013-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
22
#
3-
# Licensed under the Amazon Software License (the "License"). You may not use this file except in compliance with the
3+
# Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the
44
# License. A copy of the License is located at
55
#
6-
# http://aws.amazon.com/asl/
6+
# http://aws.amazon.com/apache2.0/
77
#
88
# or in the "LICENSE.txt" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES
99
# OR CONDITIONS OF ANY KIND, express or implied. See the License for the specific language governing permissions and
@@ -35,7 +35,7 @@ def read(fname):
3535
author_email = "[email protected]",
3636
description = ("A simple tool to launch and manage HPC clusters as CloudFormation stacks."),
3737
url = ("https://github.com/awslabs/cfncluster"),
38-
license = "Amazon Software License",
38+
license = "Apache License 2.0",
3939
packages = find_packages(),
4040
install_requires = requires,
4141
entry_points=dict(console_scripts=console_scripts),
@@ -50,6 +50,6 @@ def read(fname):
5050
"Environment :: Console",
5151
"Programming Language :: Python",
5252
"Topic :: Scientific/Engineering",
53-
"License :: Other/Proprietary License",
53+
"License :: Apache Software License",
5454
],
55-
)
55+
)

0 commit comments

Comments
 (0)