Skip to content

Commit 489ca63

Browse files
committed
Use BSD License
1 parent 2e1e9db commit 489ca63

File tree

5 files changed

+44
-2
lines changed

5 files changed

+44
-2
lines changed

LICENSE

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
Copyright (c) 2015, Onni Software Ltd.
2+
All rights reserved.
3+
4+
Redistribution and use in source and binary forms, with or without
5+
modification, are permitted provided that the following conditions are met:
6+
7+
* Redistributions of source code must retain the above copyright notice, this
8+
list of conditions and the following disclaimer.
9+
10+
* Redistributions in binary form must reproduce the above copyright notice,
11+
this list of conditions and the following disclaimer in the documentation
12+
and/or other materials provided with the distribution.
13+
14+
* Neither the name of Flask-Excel nor the names of its
15+
contributors may be used to endorse or promote products derived from
16+
this software without specific prior written permission.
17+
18+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
22+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
24+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
25+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
26+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28+

README.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,11 @@ Here is the example viewing function codes::
116116
sheet = excel.pe.Sheet([[1, 2],[3, 4]])
117117
return excel.make_response(sheet, "csv")
118118

119+
License
120+
=============
121+
122+
New BSD License
123+
119124
Dependencies
120125
=============
121126

django_excel/__init__.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
"""
2+
django_excel
3+
~~~~~~~~~~~~~~~~~~~
4+
5+
A django extension that provides one application programming interface
6+
to read and write data in different excel file formats
7+
8+
:copyright: (c) 2015 by Onni Software Ltd.
9+
:license: New BSD License
10+
"""
111
from django.core.files.uploadhandler import MemoryFileUploadHandler, TemporaryFileUploadHandler
212
from django.core.files.uploadedfile import InMemoryUploadedFile, TemporaryUploadedFile
313
from django.http import HttpResponse

doc/source/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Welcome to django-excel's documentation!
99
:Author: C.W.
1010
:Source code: http://github.com/chfw/django-excel
1111
:Issues: http://github.com/chfw/django-excel/issues
12-
:License: GPL v3 or BSD
12+
:License: New BSD License
1313
:Version: |version|
1414
:Generated: |today|
1515

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@
3535
'Topic :: Software Development :: Libraries :: Python Modules',
3636
'Programming Language :: Python',
3737
'License :: OSI Approved :: BSD License',
38-
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
3938
'Intended Audience :: Developers',
4039
'Programming Language :: Python :: 2',
4140
'Programming Language :: Python :: 2.7',

0 commit comments

Comments
 (0)