Skip to content

Commit e467dd2

Browse files
committed
0.16.0
1 parent db59873 commit e467dd2

File tree

4 files changed

+63
-60
lines changed

4 files changed

+63
-60
lines changed

poetry.lock

Lines changed: 0 additions & 48 deletions
This file was deleted.

pyproject.toml

Lines changed: 17 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
[tool.poetry]
1+
[project]
22
name = "reloader.py"
3-
version = "0.15.1"
3+
version = "0.16.0"
44
description = "A simple script reloader"
55
license = "MIT"
6-
authors = ["EcmaXp <[email protected]>"]
7-
repository = "https://github.com/EcmaXp/reloader.py"
8-
packages = [{ include = "reloader.py" }]
6+
authors = [{ name = "EcmaXp", email = "[email protected]" }]
7+
requires-python = ">=3.10"
8+
dependencies = ["watchdog>=5.0.0"]
99
classifiers = [
1010
"Development Status :: 4 - Beta",
1111
"Environment :: Console",
@@ -15,20 +15,26 @@ classifiers = [
1515
"Programming Language :: Python :: 3.10",
1616
"Programming Language :: Python :: 3.11",
1717
"Programming Language :: Python :: 3.12",
18+
"Programming Language :: Python :: 3.13",
1819
"Programming Language :: Python :: Implementation :: CPython",
1920
"Topic :: Software Development :: Debuggers",
2021
"Topic :: Software Development :: Libraries :: Python Modules",
2122
"Topic :: Software Development :: Testing",
2223
"Topic :: Utilities",
2324
]
2425

25-
[tool.poetry.dependencies]
26-
python = "^3.10"
27-
watchdog = "^5.0.0"
26+
[project.urls]
27+
Repository = "https://github.com/EcmaXp/reloader.py"
2828

29-
[tool.poetry.scripts]
29+
[project.scripts]
3030
"reloader" = "reloader:main"
3131

3232
[build-system]
33-
requires = ["poetry-core"]
34-
build-backend = "poetry.core.masonry.api"
33+
requires = ["hatchling"]
34+
build-backend = "hatchling.build"
35+
36+
[tool.hatch.build.targets.wheel]
37+
packages = ["reloader.py"]
38+
39+
[tool.hatch.build.targets.sdist]
40+
packages = ["reloader.py"]

reloader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
from watchdog.utils.event_debouncer import EventDebouncer
3535

3636
__author__ = "EcmaXp"
37-
__version__ = "0.15.1"
37+
__version__ = "0.16.0"
3838
__license__ = "MIT"
3939
__url__ = "https://pypi.org/project/reloader.py/"
4040
__all__ = [

uv.lock

Lines changed: 45 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)