Skip to content

Commit

Permalink
Add missing copyright notices to command and test modules
Browse files Browse the repository at this point in the history
  • Loading branch information
rrthomas committed Nov 17, 2024
1 parent 6bee916 commit a200c79
Show file tree
Hide file tree
Showing 21 changed files with 126 additions and 0 deletions.
6 changes: 6 additions & 0 deletions psutils/command/epsffit.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
"""
epsffit command.
Copyright (c) Reuben Thomas 2023.
Released under the GPL version 3, or (at your option) any later version.
"""

import argparse
import re
import sys
Expand Down
6 changes: 6 additions & 0 deletions psutils/command/extractres.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
"""
extractres command.
Copyright (c) Reuben Thomas 2023.
Released under the GPL version 3, or (at your option) any later version.
"""

import argparse
import os
import re
Expand Down
6 changes: 6 additions & 0 deletions psutils/command/includeres.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
"""
includeres command.
Copyright (c) Reuben Thomas 2023.
Released under the GPL version 3, or (at your option) any later version.
"""

import argparse
import os
import sys
Expand Down
6 changes: 6 additions & 0 deletions psutils/command/psbook.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
"""
psbook command.
Copyright (c) Reuben Thomas 2023.
Released under the GPL version 3, or (at your option) any later version.
"""

import argparse
import sys
import warnings
Expand Down
6 changes: 6 additions & 0 deletions psutils/command/psjoin.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
"""
psjoin command.
Copyright (c) Reuben Thomas 2023.
Released under the GPL version 3, or (at your option) any later version.
"""

import argparse
import os
import re
Expand Down
6 changes: 6 additions & 0 deletions psutils/command/psnup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
"""
psnup command.
Copyright (c) Reuben Thomas 2023.
Released under the GPL version 3, or (at your option) any later version.
"""

import argparse
import re
import sys
Expand Down
6 changes: 6 additions & 0 deletions psutils/command/psresize.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
"""
psresize command.
Copyright (c) Reuben Thomas 2023.
Released under the GPL version 3, or (at your option) any later version.
"""

import argparse
import sys
import warnings
Expand Down
6 changes: 6 additions & 0 deletions psutils/command/psselect.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
"""
psselect command.
Copyright (c) Reuben Thomas 2023.
Released under the GPL version 3, or (at your option) any later version.
"""

import argparse
import sys
import warnings
Expand Down
6 changes: 6 additions & 0 deletions psutils/command/pstops.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
"""
pstops command.
Copyright (c) Reuben Thomas 2023.
Released under the GPL version 3, or (at your option) any later version.
"""

import argparse
import sys
import warnings
Expand Down
6 changes: 6 additions & 0 deletions tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
"""
Test configuration.
Copyright (c) Reuben Thomas 2023.
Released under the GPL version 3, or (at your option) any later version.
"""

from typing import Any

from pytest import FixtureRequest, Parser, fixture
Expand Down
6 changes: 6 additions & 0 deletions tests/test_epsffit.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
"""
epsffit tests.
Copyright (c) Reuben Thomas 2023.
Released under the GPL version 3, or (at your option) any later version.
"""

from pathlib import Path
from itertools import combinations
from typing import Callable, List, Iterable
Expand Down
6 changes: 6 additions & 0 deletions tests/test_extractres.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
"""
extractres tests.
Copyright (c) Reuben Thomas 2023.
Released under the GPL version 3, or (at your option) any later version.
"""

from pathlib import Path

from pytest import mark, CaptureFixture
Expand Down
6 changes: 6 additions & 0 deletions tests/test_includeres.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
"""
includeres tests.
Copyright (c) Reuben Thomas 2023.
Released under the GPL version 3, or (at your option) any later version.
"""

from pathlib import Path
from typing import Callable, List

Expand Down
6 changes: 6 additions & 0 deletions tests/test_pdfnup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
"""
pdfnup tests.
Copyright (c) Reuben Thomas 2023.
Released under the GPL version 3, or (at your option) any later version.
"""

from pathlib import Path
from typing import List, Callable

Expand Down
6 changes: 6 additions & 0 deletions tests/test_psbook.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
"""
psbook tests.
Copyright (c) Reuben Thomas 2023.
Released under the GPL version 3, or (at your option) any later version.
"""

from pathlib import Path

from testutils import file_test, make_tests, Case, GeneratedInput
Expand Down
6 changes: 6 additions & 0 deletions tests/test_psjoin.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
"""
psjoin tests.
Copyright (c) Reuben Thomas 2023.
Released under the GPL version 3, or (at your option) any later version.
"""

from contextlib import redirect_stdout
from pathlib import Path
from typing import List
Expand Down
6 changes: 6 additions & 0 deletions tests/test_psnup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
"""
test_psnup tests.
Copyright (c) Reuben Thomas 2023.
Released under the GPL version 3, or (at your option) any later version.
"""

from pathlib import Path

from testutils import file_test, make_tests, Case, GeneratedInput
Expand Down
6 changes: 6 additions & 0 deletions tests/test_psresize.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
"""
psresize tests.
Copyright (c) Reuben Thomas 2023.
Released under the GPL version 3, or (at your option) any later version.
"""

from pathlib import Path

from testutils import file_test, make_tests, Case, GeneratedInput
Expand Down
6 changes: 6 additions & 0 deletions tests/test_psselect.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
"""
psselect tests.
Copyright (c) Reuben Thomas 2023.
Released under the GPL version 3, or (at your option) any later version.
"""

from pathlib import Path

from testutils import file_test, make_tests, Case, GeneratedInput
Expand Down
6 changes: 6 additions & 0 deletions tests/test_pstops.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
"""
pstops tests.
Copyright (c) Reuben Thomas 2023.
Released under the GPL version 3, or (at your option) any later version.
"""

import os
from pathlib import Path
from unittest import mock
Expand Down
6 changes: 6 additions & 0 deletions tests/testutils.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
"""
psutils tests utility routines.
Copyright (c) Reuben Thomas 2023.
Released under the GPL version 3, or (at your option) any later version.
"""

import os
import sys
import subprocess
Expand Down

0 comments on commit a200c79

Please sign in to comment.