Skip to content

Commit 8de60e0

Browse files
authored
Rename package to 'pythonkuma' (#24)
1 parent 33a01e1 commit 8de60e0

File tree

8 files changed

+6
-7
lines changed

8 files changed

+6
-7
lines changed

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires = ["hatchling", "hatch-regex-commit"]
33
build-backend = "hatchling.build"
44

55
[project]
6-
name = "pyuptimekuma"
6+
name = "pythonkuma"
77
dynamic = ["version"]
88
description = "Simple Python wrapper for Uptime Kuma"
99
readme = "README.md"
@@ -28,16 +28,16 @@ dev = [
2828
]
2929

3030
[project.urls]
31-
Source = "https://github.com/tr4nt0r/python-uptimekuma"
31+
Source = "https://github.com/tr4nt0r/pythonkuma"
3232

3333
[tool.hatch.version]
3434
source = "regex_commit"
3535
commit_extra_args = ["-e"]
36-
path = "pyuptimekuma/__init__.py"
36+
path = "pythonkuma/__init__.py"
3737

3838
[tool.hatch.build.targets.sdist]
3939
include = [
40-
"/pyuptimekuma",
40+
"/pythonkuma",
4141
]
4242

4343
[tool.ruff]
@@ -51,7 +51,7 @@ ignore = ["TRY003", "N818"]
5151

5252
[tool.ruff.lint.isort]
5353
force-sort-within-sections = true
54-
known-first-party = ["pyuptimekuma"]
54+
known-first-party = ["pythonkuma"]
5555
combine-as-imports = true
5656
split-on-trailing-comma = false
5757

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@
55

66
import aiohttp
77

8-
from pyuptimekuma import exceptions
9-
8+
from . import exceptions
109
from .const import LOGGER
1110
from .models import UptimeKumaApiResponse
1211

0 commit comments

Comments
 (0)