Skip to content

Commit

Permalink
Changed to BSD 3-Clause
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Dodd committed Jun 20, 2016
1 parent 555172b commit af2048d
Show file tree
Hide file tree
Showing 28 changed files with 51 additions and 44 deletions.
41 changes: 24 additions & 17 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,22 +1,29 @@
License for the software signac.
BSD 3-Clause License for the software signac.

Copyright (c) 2016 The Regents of the University of Michigan
Copyright (c) 2016, The Regents of the University of Michigan
All rights reserved.

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:
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.

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.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.

3. Neither the name of the copyright holder nor the names of its contributors may
be used to endorse or promote products derived from this software without
specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"License :: OSI Approved :: BSD 3-Clause License",
"Topic :: Scientific/Engineering :: Physics",
],

Expand Down
2 changes: 1 addition & 1 deletion signac/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Copyright (c) 2016 The Regents of the University of Michigan
# All rights reserved.
# This software is licensed under the MIT License.
# This software is licensed under the BSD 3-Clause License.
"""The signac framework aids in the management of large and
heterogeneous data spaces.
Expand Down
2 changes: 1 addition & 1 deletion signac/__main__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Copyright (c) 2016 The Regents of the University of Michigan
# All rights reserved.
# This software is licensed under the MIT License.
# This software is licensed under the BSD 3-Clause License.
from __future__ import print_function
import os
import sys
Expand Down
2 changes: 1 addition & 1 deletion signac/common/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Copyright (c) 2016 The Regents of the University of Michigan
# All rights reserved.
# This software is licensed under the MIT License.
# This software is licensed under the BSD 3-Clause License.
2 changes: 1 addition & 1 deletion signac/common/config.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Copyright (c) 2016 The Regents of the University of Michigan
# All rights reserved.
# This software is licensed under the MIT License.
# This software is licensed under the BSD 3-Clause License.
import os
import stat
import logging
Expand Down
2 changes: 1 addition & 1 deletion signac/common/connection.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Copyright (c) 2016 The Regents of the University of Michigan
# All rights reserved.
# This software is licensed under the MIT License.
# This software is licensed under the BSD 3-Clause License.
import subprocess
import logging
import ssl
Expand Down
2 changes: 1 addition & 1 deletion signac/common/crypt.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Copyright (c) 2016 The Regents of the University of Michigan
# All rights reserved.
# This software is licensed under the MIT License.
# This software is licensed under the BSD 3-Clause License.
import base64

from . import six
Expand Down
2 changes: 1 addition & 1 deletion signac/common/errors.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Copyright (c) 2016 The Regents of the University of Michigan
# All rights reserved.
# This software is licensed under the MIT License.
# This software is licensed under the BSD 3-Clause License.


class Error(Exception):
Expand Down
2 changes: 1 addition & 1 deletion signac/common/host.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Copyright (c) 2016 The Regents of the University of Michigan
# All rights reserved.
# This software is licensed under the MIT License.
# This software is licensed under the BSD 3-Clause License.
import logging
import warnings
import getpass
Expand Down
2 changes: 1 addition & 1 deletion signac/common/validate.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Copyright (c) 2016 The Regents of the University of Michigan
# All rights reserved.
# This software is licensed under the MIT License.
# This software is licensed under the BSD 3-Clause License.
import logging

from .configobj.validate import Validator
Expand Down
2 changes: 1 addition & 1 deletion signac/contrib/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Copyright (c) 2016 The Regents of the University of Michigan
# All rights reserved.
# This software is licensed under the MIT License.
# This software is licensed under the BSD 3-Clause License.
from __future__ import absolute_import
import warnings

Expand Down
2 changes: 1 addition & 1 deletion signac/contrib/adapters.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Copyright (c) 2016 The Regents of the University of Michigan
# All rights reserved.
# This software is licensed under the MIT License.
# This software is licensed under the BSD 3-Clause License.
from . import conversion
from .formats import FileFormat

Expand Down
2 changes: 1 addition & 1 deletion signac/contrib/conversion.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Copyright (c) 2016 The Regents of the University of Michigan
# All rights reserved.
# This software is licensed under the MIT License.
# This software is licensed under the BSD 3-Clause License.
import logging

from ..common.six import with_metaclass
Expand Down
2 changes: 1 addition & 1 deletion signac/contrib/crawler.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Copyright (c) 2016 The Regents of the University of Michigan
# All rights reserved.
# This software is licensed under the MIT License.
# This software is licensed under the BSD 3-Clause License.
import os
import re
import json
Expand Down
2 changes: 1 addition & 1 deletion signac/contrib/errors.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Copyright (c) 2016 The Regents of the University of Michigan
# All rights reserved.
# This software is licensed under the MIT License.
# This software is licensed under the BSD 3-Clause License.
class DatabaseError(BaseException):
pass

Expand Down
2 changes: 1 addition & 1 deletion signac/contrib/filesystems.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Copyright (c) 2016 The Regents of the University of Michigan
# All rights reserved.
# This software is licensed under the MIT License.
# This software is licensed under the BSD 3-Clause License.
"""The file system handlers defined in this module
encapsulate the I/O operations required to store
and fetch data from different file systems."""
Expand Down
2 changes: 1 addition & 1 deletion signac/contrib/formats.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Copyright (c) 2016 The Regents of the University of Michigan
# All rights reserved.
# This software is licensed under the MIT License.
# This software is licensed under the BSD 3-Clause License.
import logging
import errno

Expand Down
2 changes: 1 addition & 1 deletion signac/contrib/formats_network.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Copyright (c) 2016 The Regents of the University of Michigan
# All rights reserved.
# This software is licensed under the MIT License.
# This software is licensed under the BSD 3-Clause License.
import logging
import inspect
import collections
Expand Down
2 changes: 1 addition & 1 deletion signac/contrib/hashing.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Copyright (c) 2016 The Regents of the University of Michigan
# All rights reserved.
# This software is licensed under the MIT License.
# This software is licensed under the BSD 3-Clause License.
import hashlib
import json

Expand Down
2 changes: 1 addition & 1 deletion signac/contrib/job.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Copyright (c) 2016 The Regents of the University of Michigan
# All rights reserved.
# This software is licensed under the MIT License.
# This software is licensed under the BSD 3-Clause License.
import os
import errno
import logging
Expand Down
2 changes: 1 addition & 1 deletion signac/contrib/project.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Copyright (c) 2016 The Regents of the University of Michigan
# All rights reserved.
# This software is licensed under the MIT License.
# This software is licensed under the BSD 3-Clause License.
import os
import re
import logging
Expand Down
2 changes: 1 addition & 1 deletion signac/contrib/utility.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Copyright (c) 2016 The Regents of the University of Michigan
# All rights reserved.
# This software is licensed under the MIT License.
# This software is licensed under the BSD 3-Clause License.
import logging
import sys
import os
Expand Down
2 changes: 1 addition & 1 deletion signac/core/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Copyright (c) 2016 The Regents of the University of Michigan
# All rights reserved.
# This software is licensed under the MIT License.
# This software is licensed under the BSD 3-Clause License.
2 changes: 1 addition & 1 deletion signac/core/jsondict.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Copyright (c) 2016 The Regents of the University of Michigan
# All rights reserved.
# This software is licensed under the MIT License.
# This software is licensed under the BSD 3-Clause License.
"Dict implementation with backend json file."
import os
import errno
Expand Down
2 changes: 1 addition & 1 deletion signac/db/database.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Copyright (c) 2016 The Regents of the University of Michigan
# All rights reserved.
# This software is licensed under the MIT License.
# This software is licensed under the BSD 3-Clause License.
from ..common import host


Expand Down
2 changes: 1 addition & 1 deletion signac/gui/gui.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Copyright (c) 2016 The Regents of the University of Michigan
# All rights reserved.
# This software is licensed under the MIT License.
# This software is licensed under the BSD 3-Clause License.
#!/usr/bin/env python3
"""Light-weight GUI client as part of the signac framework.
Expand Down
2 changes: 1 addition & 1 deletion signac/gui/models.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Copyright (c) 2016 The Regents of the University of Michigan
# All rights reserved.
# This software is licensed under the MIT License.
# This software is licensed under the BSD 3-Clause License.
import collections
import logging

Expand Down

0 comments on commit af2048d

Please sign in to comment.