Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright 2023 Dave Hall - https://proactiveops.io
Copyright 2023 - 2026 Dave Hall - https://proactiveops.io

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the “Software”), to deal
Expand Down
4 changes: 4 additions & 0 deletions picorun/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
"""PicoRun API."""

__author__ = "Dave Hall <skwashd@gmail.com>"
__copyright__ = "Copyright 2023 - 2026, Dave Hall https://proactiveops.io"
__license__ = "MIT"

from .picorun import ApiRequestArgs, ApiResponse # noqa F401
4 changes: 4 additions & 0 deletions picorun/errors.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
"""PicoRun Errors."""

__author__ = "Dave Hall <skwashd@gmail.com>"
__copyright__ = "Copyright 2023 - 2026, Dave Hall https://proactiveops.io"
__license__ = "MIT"


class ApiError(Exception):
"""Exception raised when an API call fails."""
Expand Down
4 changes: 4 additions & 0 deletions picorun/picorun.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
"""PicoRun runtime classes."""

__author__ = "Dave Hall <skwashd@gmail.com>"
__copyright__ = "Copyright 2023 - 2026, Dave Hall https://proactiveops.io"
__license__ = "MIT"

from typing import Any, ClassVar

from requests import Response
Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ dynamic = ["version"]

[dependency-groups]
dev = [
"coverage==7.13.1",
"coverage==7.13.2",
"pytest==9.0.2",
"pytest-mock==3.15.1",
"ruff==0.14.13",
"ruff==0.14.14",
]

build = [
Expand All @@ -33,9 +33,9 @@ build = [

[build-system]
requires = [
"setuptools==80.9.0",
"setuptools==80.10.2",
"setuptools-git-versioning==3.0.1",
"wheel==0.45.1",
"wheel==0.46.3",
]
build-backend = "setuptools.build_meta"

Expand Down
4 changes: 4 additions & 0 deletions tests/test_errors.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
"""Test picorun classes."""

__author__ = "Dave Hall <skwashd@gmail.com>"
__copyright__ = "Copyright 2023 - 2026, Dave Hall https://proactiveops.io"
__license__ = "MIT"

import picorun.errors


Expand Down
4 changes: 4 additions & 0 deletions tests/test_picorun.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
"""Test picorun classes."""

__author__ = "Dave Hall <skwashd@gmail.com>"
__copyright__ = "Copyright 2023 - 2026, Dave Hall https://proactiveops.io"
__license__ = "MIT"

import pytest

import picorun
Expand Down
180 changes: 90 additions & 90 deletions uv.lock

Large diffs are not rendered by default.