Skip to content

Commit 79e86aa

Browse files
committed
Change license to GPL. Resolves CellProfiler#3.
The license of python-bioformats as a whole has to be GPL because loci_tools.jar is GPL licensed. The python files remain under the more permissive BSD license.
1 parent 0cc0ba9 commit 79e86aa

16 files changed

+426
-121
lines changed

COPYING

Lines changed: 340 additions & 0 deletions
Large diffs are not rendered by default.

README.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ GitHub repository: https://github.com/CellProfiler/python-bioformats
1515

1616
Report bugs here: https://github.com/CellProfiler/python-bioformats/issues
1717

18-
python-bioformats is licensed under the BSD license. See the
19-
accompanying file LICENSE for details.
18+
python-bioformats is licensed under the GNU General Public License
19+
(GPL). Many files are licensed under the more permissive BSD license.
20+
See the accompanying files COPYING and LICENSE for details.
2021

2122
Copyright (c) 2009-2014 Broad Institute. All rights reserved.

bioformats/__init__.py

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,12 @@
1-
'''Bioformats package - wrapper for loci.bioformats java code
2-
3-
CellProfiler is distributed under the GNU General Public License,
4-
but this file is licensed under the more permissive BSD license.
5-
See the accompanying file LICENSE for details.
1+
# Python-bioformats is distributed under the GNU General Public
2+
# License, but this file is licensed under the more permissive BSD
3+
# license. See the accompanying file LICENSE for details.
4+
#
5+
# Copyright (c) 2009-2014 Broad Institute
6+
# All rights reserved.
67

7-
Copyright (c) 2003-2009 Massachusetts Institute of Technology
8-
Copyright (c) 2009-2013 Broad Institute
9-
All rights reserved.
10-
11-
Please see the AUTHORS file for credits.
8+
'''Bioformats package - wrapper for loci.bioformats java code
129
13-
Website: http://www.cellprofiler.org
1410
'''
1511
__version__ = "$Revision$"
1612

bioformats/formatreader.py

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# Python-bioformats is distributed under the GNU General Public
2+
# License, but this file is licensed under the more permissive BSD
3+
# license. See the accompanying file LICENSE for details.
4+
#
5+
# Copyright (c) 2009-2014 Broad Institute
6+
# All rights reserved.
7+
18
'''formatreader.py - mechanism to wrap a bioformats ReaderWrapper and ImageReader
29
310
Example:
@@ -13,17 +20,6 @@
1320
my_red_image, my_green_image, my_blue_image = \
1421
[cs.open_bytes(cs.getIndex(0,i,0)) for i in range(3)]
1522
16-
CellProfiler is distributed under the GNU General Public License,
17-
but this file is licensed under the more permissive BSD license.
18-
See the accompanying file LICENSE for details.
19-
20-
Copyright (c) 2003-2009 Massachusetts Institute of Technology
21-
Copyright (c) 2009-2014 Broad Institute
22-
All rights reserved.
23-
24-
Please see the AUTHORS file for credits.
25-
26-
Website: http://www.cellprofiler.org'
2723
'''
2824

2925
__version__ = "$Revision$"

bioformats/formatwriter.py

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# Python-bioformats is distributed under the GNU General Public
2+
# License, but this file is licensed under the more permissive BSD
3+
# license. See the accompanying file LICENSE for details.
4+
#
5+
# Copyright (c) 2009-2014 Broad Institute
6+
# All rights reserved.
7+
18
'''formatwriter.py - mechanism to wrap a bioformats WriterWrapper and ImageWriter
29
310
The following file formats can be written using Bio-Formats:
@@ -21,17 +28,6 @@
2128
and is especially useful for formats that do not support multiple images per
2229
file.
2330
24-
CellProfiler is distributed under the GNU General Public License,
25-
but this file is licensed under the more permissive BSD license.
26-
See the accompanying file LICENSE for details.
27-
28-
Copyright (c) 2003-2009 Massachusetts Institute of Technology
29-
Copyright (c) 2009-2014 Broad Institute
30-
All rights reserved.
31-
32-
Please see the AUTHORS file for credits.
33-
34-
Website: http://www.cellprofiler.org
3531
'''
3632

3733
__version__ = "$Revision$"

bioformats/log4j.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# Python-bioformats is distributed under the GNU General Public
2+
# License, but this file is licensed under the more permissive BSD
3+
# license. See the accompanying file LICENSE for details.
4+
#
5+
# Copyright (c) 2009-2014 Broad Institute
6+
# All rights reserved.
7+
18
import unittest
29
import javabridge
310

bioformats/metadatatools.py

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,12 @@
1-
''' metadatatools.py - mechanism to wrap some bioformats metadata classes
2-
3-
CellProfiler is distributed under the GNU General Public License,
4-
but this file is licensed under the more permissive BSD license.
5-
See the accompanying file LICENSE for details.
1+
# Python-bioformats is distributed under the GNU General Public
2+
# License, but this file is licensed under the more permissive BSD
3+
# license. See the accompanying file LICENSE for details.
4+
#
5+
# Copyright (c) 2009-2014 Broad Institute
6+
# All rights reserved.
67

7-
Copyright (c) 2003-2009 Massachusetts Institute of Technology
8-
Copyright (c) 2009-2014 Broad Institute
9-
All rights reserved.
10-
11-
Please see the AUTHORS file for credits.
8+
''' metadatatools.py - mechanism to wrap some bioformats metadata classes
129
13-
Website: http://www.cellprofiler.org
1410
'''
1511

1612
__version__ = "$Revision$"

bioformats/noseplugin.py

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
1-
# CellProfiler is distributed under the GNU General Public License.
2-
# See the accompanying file LICENSE for details.
1+
# Python-bioformats is distributed under the GNU General Public
2+
# License, but this file is licensed under the more permissive BSD
3+
# license. See the accompanying file LICENSE for details.
34
#
4-
# Copyright (c) 2003-2009 Massachusetts Institute of Technology
5-
# Copyright (c) 2009-2013 Broad Institute
6-
#
7-
# Please see the AUTHORS file for credits.
8-
#
9-
# Website: http://www.cellprofiler.org
5+
# Copyright (c) 2009-2014 Broad Institute
6+
# All rights reserved.
107

118
import logging
129
from nose.plugins import Plugin

bioformats/omexml.py

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,14 @@
1+
# Python-bioformats is distributed under the GNU General Public
2+
# License, but this file is licensed under the more permissive BSD
3+
# license. See the accompanying file LICENSE for details.
4+
#
5+
# Copyright (c) 2009-2014 Broad Institute
6+
# All rights reserved.
7+
18
"""omexml.py read and write OME xml
29
310
"""
4-
# CellProfiler is distributed under the GNU General Public License.
5-
# See the accompanying file LICENSE for details.
6-
#
7-
# Developed by the Broad Institute
8-
#
9-
# Copyright (c) 2003-2009 Massachusetts Institute of Technology
10-
# Copyright (c) 2003-2013 Broad Institute
11-
# All rights reserved.
12-
#
13-
# Please see the AUTHORS file for credits.
14-
#
15-
# Website: http://www.cellprofiler.org
16-
#
11+
1712
import xml.etree.ElementTree
1813
from xml.etree import cElementTree as ElementTree
1914
from cStringIO import StringIO

bioformats/tests/__init__.py

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +0,0 @@
1-
'''
2-
CellProfiler is distributed under the GNU General Public License,
3-
but this file is licensed under the more permissive BSD license.
4-
See the accompanying file LICENSE for details.
5-
6-
Copyright (c) 2003-2009 Massachusetts Institute of Technology
7-
Copyright (c) 2009-2013 Broad Institute
8-
All rights reserved.
9-
10-
Please see the AUTHORS file for credits.
11-
12-
Website: http://www.cellprofiler.org
13-
'''
14-

0 commit comments

Comments
 (0)