Skip to content

Commit 0fdf4fd

Browse files
committed
changed licence to MIT
1 parent c58061b commit 0fdf4fd

File tree

6 files changed

+3354
-257
lines changed

6 files changed

+3354
-257
lines changed

LICENSE

Lines changed: 21 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,21 @@
1-
# Copyright (C) 2014-2017 Primož Čermelj, Matjaž Mršnik, Miha Pirnat, Janko Slavič, Blaž Starc (in alphabetic order)
2-
#
3-
# This file is part of OpenModal.
4-
#
5-
# OpenModal is free software: you can redistribute it and/or modify
6-
# it under the terms of the GNU General Public License as published by
7-
# the Free Software Foundation, version 3 of the License.
8-
#
9-
# OpenModal is distributed in the hope that it will be useful,
10-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
11-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12-
# GNU General Public License for more details.
13-
#
14-
# You should have received a copy of the GNU General Public License
15-
# along with OpenModal. If not, see <http://www.gnu.org/licenses/>.
1+
MIT License
2+
3+
Acknowledgement: from 2014-2017 this package was part of the OpenModal project
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

pyuff/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "2.2"
1+
__version__ = "2.3"
22
from .pyuff import *
33
from .datasets import *
44

pyuff/pyuff.py

Lines changed: 5 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,9 @@
1-
#!/usr/bin/env python
2-
# -*- coding: utf-8 -*-
3-
# Copyright (C) 2014-2017 Primož Čermelj, Matjaž Mršnik, Miha Pirnat, Janko Slavič, Blaž Starc (in alphabetic order)
4-
#
5-
# This file is part of pyuff.
6-
#
7-
# pyFRF is free software: you can redistribute it and/or modify
8-
# it under the terms of the GNU General Public License as published by
9-
# the Free Software Foundation, version 3 of the License.
10-
#
11-
# pyuff is distributed in the hope that it will be useful,
12-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14-
# GNU General Public License for more details.
15-
#
16-
# You should have received a copy of the GNU General Public License
17-
# along with pyuff. If not, see <http://www.gnu.org/licenses/>.
181
"""
192
==========
203
pyuff module
214
==========
225
23-
This module is part of the www.openmodal.com project and
24-
defines an UFF class to manipulate with the
6+
This module defines an UFF class to manipulate with the
257
UFF (Universal File Format) files, i.e., to read from and write
268
to UFF files. Among the variety of UFF formats, only some of the
279
formats (data-set types) frequently used in structural dynamics
@@ -44,14 +26,13 @@
4426
* This source (py2.7) was first written in 2007, 2008 by Primoz Cermelj ([email protected])
4527
* As part of the www.openmodal.com project the first source was adopted for Python 3 by
4628
Matjaz Mrsnik <[email protected]>
29+
* 2014-2017 the package was part of the OpenModal project maintained by: Martin Česnik,
30+
Matjaž Mršnik, Miha Pirnat, Janko Slavič, Blaž Starc (in alphabetic order)
4731
* The package is maintained by Janko Slavič <[email protected]>
4832
4933
Notes:
50-
* 58 data-set is always written in double precision, even if it is
51-
read in single precision.
52-
53-
* ``numpy`` module is required as all the vector/matrix-type data are read
54-
or written using ``numpy.array`` objects.
34+
* by default 58 data-set is written in double precision (see option `force_double=True`),
35+
even if it is read in single precision ().
5536
5637
Example:
5738
>>> import pyuff

0 commit comments

Comments
 (0)