Skip to content
This repository has been archived by the owner on Oct 27, 2024. It is now read-only.

Commit

Permalink
Added copyright notices before merging to main
Browse files Browse the repository at this point in the history
  • Loading branch information
tygoee committed Nov 21, 2023
1 parent f2e078d commit eb46d6d
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/runner.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
# MCM-Manager: Minecraft Modpack Manager
# Copyright (C) 2023 Tygo Everts
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.

from argparse import ArgumentParser
from dataclasses import dataclass, fields
from os import path, makedirs
Expand Down
16 changes: 16 additions & 0 deletions tests/common/test_maven_coords.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
# MCM-Manager: Minecraft Modpack Manager
# Copyright (C) 2023 Tygo Everts
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.

import unittest

from src.common.maven_coords import maven_parse
Expand Down
16 changes: 16 additions & 0 deletions tests/globalfuncs.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
# MCM-Manager: Minecraft Modpack Manager
# Copyright (C) 2023 Tygo Everts
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.

from contextlib import redirect_stdout
from typing import Any, Callable
from os import path, remove, walk
Expand Down

0 comments on commit eb46d6d

Please sign in to comment.