Skip to content

Commit da308e7

Browse files
committed
Updated license on all files
This fixes #36
1 parent 95fffda commit da308e7

19 files changed

Lines changed: 62 additions & 72 deletions

Makefile

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
# PyMatcha - A Python Dating Website
2+
# Copyright (C) 2018-2019 jlasne/gmorer
3+
# <jlasne@student.42.fr> - <gmorer@student.42.fr>
4+
#
5+
# This program 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, either version 3 of the License, or
8+
# (at your option) any later version.
9+
#
10+
# This program is distributed in the hope that it will be useful,
11+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
# GNU General Public License for more details.
14+
#
15+
# You should have received a copy of the GNU General Public License
16+
# along with this program. If not, see <https://www.gnu.org/licenses/>.
17+
18+
119
SHELL := /bin/bash
220
VENV = $(PWD)/venv
321
PIP = $(VENV)/bin/pip

backend/PyMatcha/__init__.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
# coding=utf-8
2-
31
"""
42
PyMatcha - A Python Dating Website
5-
Copyright (C) 2018-2019 jlasne/ynacache
6-
<jlasne@student.42.fr> - <ynacache@student.42.fr>
3+
Copyright (C) 2018-2019 jlasne/gmorer
4+
<jlasne@student.42.fr> - <gmorer@student.42.fr>
75
86
This program is free software: you can redistribute it and/or modify
97
it under the terms of the GNU General Public License as published by

backend/PyMatcha/models/__init__.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
# coding=utf-8
2-
31
"""
42
PyMatcha - A Python Dating Website
5-
Copyright (C) 2018-2019 jlasne/ynacache
6-
<jlasne@student.42.fr> - <ynacache@student.42.fr>
3+
Copyright (C) 2018-2019 jlasne/gmorer
4+
<jlasne@student.42.fr> - <gmorer@student.42.fr>
75
86
This program is free software: you can redistribute it and/or modify
97
it under the terms of the GNU General Public License as published by
@@ -19,6 +17,7 @@
1917
along with this program. If not, see <https://www.gnu.org/licenses/>.
2018
"""
2119

20+
2221
from peewee import Model
2322

2423
from PyMatcha import app_db

backend/PyMatcha/models/user.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
# coding=utf-8
2-
31
"""
42
PyMatcha - A Python Dating Website
5-
Copyright (C) 2018-2019 jlasne/ynacache
6-
<jlasne@student.42.fr> - <ynacache@student.42.fr>
3+
Copyright (C) 2018-2019 jlasne/gmorer
4+
<jlasne@student.42.fr> - <gmorer@student.42.fr>
75
86
This program is free software: you can redistribute it and/or modify
97
it under the terms of the GNU General Public License as published by
@@ -19,6 +17,7 @@
1917
along with this program. If not, see <https://www.gnu.org/licenses/>.
2018
"""
2119

20+
2221
import uuid
2322
import datetime
2423

backend/PyMatcha/routes/__init__.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
# coding=utf-8
2-
31
"""
42
PyMatcha - A Python Dating Website
5-
Copyright (C) 2018-2019 jlasne/ynacache
6-
<jlasne@student.42.fr> - <ynacache@student.42.fr>
3+
Copyright (C) 2018-2019 jlasne/gmorer
4+
<jlasne@student.42.fr> - <gmorer@student.42.fr>
75
86
This program is free software: you can redistribute it and/or modify
97
it under the terms of the GNU General Public License as published by

backend/PyMatcha/routes/api/__init__.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
# coding=utf-8
2-
31
"""
42
PyMatcha - A Python Dating Website
5-
Copyright (C) 2018-2019 jlasne/ynacache
6-
<jlasne@student.42.fr> - <ynacache@student.42.fr>
3+
Copyright (C) 2018-2019 jlasne/gmorer
4+
<jlasne@student.42.fr> - <gmorer@student.42.fr>
75
86
This program is free software: you can redistribute it and/or modify
97
it under the terms of the GNU General Public License as published by

backend/PyMatcha/routes/api/ping_pong.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
# coding=utf-8
2-
31
"""
42
PyMatcha - A Python Dating Website
5-
Copyright (C) 2018-2019 jlasne/ynacache
6-
<jlasne@student.42.fr> - <ynacache@student.42.fr>
3+
Copyright (C) 2018-2019 jlasne/gmorer
4+
<jlasne@student.42.fr> - <gmorer@student.42.fr>
75
86
This program is free software: you can redistribute it and/or modify
97
it under the terms of the GNU General Public License as published by
@@ -19,6 +17,7 @@
1917
along with this program. If not, see <https://www.gnu.org/licenses/>.
2018
"""
2119

20+
2221
from flask import Blueprint, jsonify
2322

2423
ping_pong_bp = Blueprint("ping_pong", __name__)

backend/PyMatcha/tests/__init__.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
# coding=utf-8
2-
31
"""
42
PyMatcha - A Python Dating Website
5-
Copyright (C) 2018-2019 jlasne/ynacache
6-
<jlasne@student.42.fr> - <ynacache@student.42.fr>
3+
Copyright (C) 2018-2019 jlasne/gmorer
4+
<jlasne@student.42.fr> - <gmorer@student.42.fr>
75
86
This program is free software: you can redistribute it and/or modify
97
it under the terms of the GNU General Public License as published by

backend/PyMatcha/tests/api/__init__.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
# coding=utf-8
2-
31
"""
42
PyMatcha - A Python Dating Website
5-
Copyright (C) 2018-2019 jlasne/ynacache
6-
<jlasne@student.42.fr> - <ynacache@student.42.fr>
3+
Copyright (C) 2018-2019 jlasne/gmorer
4+
<jlasne@student.42.fr> - <gmorer@student.42.fr>
75
86
This program is free software: you can redistribute it and/or modify
97
it under the terms of the GNU General Public License as published by

backend/PyMatcha/tests/api/test_ping_pong_endpoint.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
# coding=utf-8
2-
31
"""
42
PyMatcha - A Python Dating Website
5-
Copyright (C) 2018-2019 jlasne/ynacache
6-
<jlasne@student.42.fr> - <ynacache@student.42.fr>
3+
Copyright (C) 2018-2019 jlasne/gmorer
4+
<jlasne@student.42.fr> - <gmorer@student.42.fr>
75
86
This program is free software: you can redistribute it and/or modify
97
it under the terms of the GNU General Public License as published by
@@ -19,6 +17,7 @@
1917
along with this program. If not, see <https://www.gnu.org/licenses/>.
2018
"""
2119

20+
2221
import pytest
2322

2423
from flask import url_for

0 commit comments

Comments
 (0)