Skip to content

Commit e90abb1

Browse files
committed
update license/copyright
1 parent 9779278 commit e90abb1

File tree

7 files changed

+93
-2
lines changed

7 files changed

+93
-2
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (C) 2016-2017 Patrick Seewald, Tiziano Müller, Ole Schuett, Mohamed Fawzi, CP2K developers group
1+
Copyright (C) 2016-2018 Patrick Seewald, CP2K developers group
22

33
This program is free software: you can redistribute it and/or modify
44
it under the terms of the GNU General Public License as published by

fprettify.py

+18
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
#!/usr/bin/env python
22
# -*- coding: utf-8 -*-
3+
###############################################################################
4+
# This file is part of fprettify.
5+
# Copyright (C) 2016-2018 Patrick Seewald, CP2K developers group
6+
#
7+
# fprettify 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, either version 3 of the License, or
10+
# (at your option) any later version.
11+
#
12+
# fprettify is distributed in the hope that it will be useful,
13+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
14+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15+
# GNU General Public License for more details.
16+
#
17+
# You should have received a copy of the GNU General Public License
18+
# along with fprettify. If not, see <http://www.gnu.org/licenses/>.
19+
###############################################################################
20+
321
"""wrapper script to run fprettify"""
422

523
from fprettify import run # pragma: no cover

fprettify/__init__.py

+18
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
#!/usr/bin/env python
22
# -*- coding: utf-8 -*-
3+
###############################################################################
4+
# This file is part of fprettify.
5+
# Copyright (C) 2016-2018 Patrick Seewald, CP2K developers group
6+
#
7+
# fprettify 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, either version 3 of the License, or
10+
# (at your option) any later version.
11+
#
12+
# fprettify is distributed in the hope that it will be useful,
13+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
14+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15+
# GNU General Public License for more details.
16+
#
17+
# You should have received a copy of the GNU General Public License
18+
# along with fprettify. If not, see <http://www.gnu.org/licenses/>.
19+
###############################################################################
20+
321
"""
422
Impose white space conventions and indentation based on scopes / subunits
523

fprettify/fparse_utils.py

+19
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
# -*- coding: utf-8 -*-
2+
###############################################################################
3+
# This file is part of fprettify.
4+
# Copyright (C) 2016-2018 Patrick Seewald, CP2K developers group
5+
#
6+
# fprettify is free software: you can redistribute it and/or modify
7+
# it under the terms of the GNU General Public License as published by
8+
# the Free Software Foundation, either version 3 of the License, or
9+
# (at your option) any later version.
10+
#
11+
# fprettify 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 fprettify. If not, see <http://www.gnu.org/licenses/>.
18+
###############################################################################
19+
120
"""This is a collection of Fortran parsing utilities."""
221

322
from __future__ import (absolute_import, division,

fprettify/tests/__init__.py

+18
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
#!/usr/bin/env python
22
# -*- coding: utf-8 -*-
3+
###############################################################################
4+
# This file is part of fprettify.
5+
# Copyright (C) 2016-2018 Patrick Seewald, CP2K developers group
6+
#
7+
# fprettify 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, either version 3 of the License, or
10+
# (at your option) any later version.
11+
#
12+
# fprettify is distributed in the hope that it will be useful,
13+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
14+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15+
# GNU General Public License for more details.
16+
#
17+
# You should have received a copy of the GNU General Public License
18+
# along with fprettify. If not, see <http://www.gnu.org/licenses/>.
19+
###############################################################################
20+
321
"""Dynamically create tests based on examples in examples/before."""
422
from __future__ import (absolute_import, division,
523
print_function, unicode_literals)

run_tests.py

+18
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
#!/usr/bin/env python
22
# -*- coding: utf-8 -*-
3+
###############################################################################
4+
# This file is part of fprettify.
5+
# Copyright (C) 2016-2018 Patrick Seewald, CP2K developers group
6+
#
7+
# fprettify 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, either version 3 of the License, or
10+
# (at your option) any later version.
11+
#
12+
# fprettify is distributed in the hope that it will be useful,
13+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
14+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15+
# GNU General Public License for more details.
16+
#
17+
# You should have received a copy of the GNU General Public License
18+
# along with fprettify. If not, see <http://www.gnu.org/licenses/>.
19+
###############################################################################
20+
321
import unittest
422
from fprettify.tests import FPrettifyTestCase, FAILED_FILE, RESULT_FILE
523
import fileinput

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
long_description = f.read()
99

1010
setup(name='fprettify',
11-
version='0.3.1',
11+
version='0.3.2',
1212
description='auto-formatter for modern fortran source code',
1313
long_description=long_description,
1414
author='Patrick Seewald',

0 commit comments

Comments
 (0)