There was an error while loading. Please reload this page.
1 parent 6f89de2 commit 6a8af68Copy full SHA for 6a8af68
2 files changed
pyproject.toml
@@ -0,0 +1,17 @@
1
+[build-system]
2
+requires = ["hatchling"]
3
+build-backend = "hatchling.build"
4
+
5
+[project]
6
+name = "python-sentinel"
7
+version = "0.1.0"
8
+description = "Standalone back-port of Python 3.15's `sentinel` builtin."
9
+readme = "README.md"
10
+requires-python = ">=3.6"
11
+license = "MIT"
12
13
+[project.urls]
14
+Repository = "https://github.com/pythonbackport/python-sentinel"
15
16
+[tool.hatch.build.targets.wheel]
17
+packages = ["sentinel"]
sentinel/__init__.py
@@ -17,7 +17,7 @@
18
from sentinel.core import sentinel
19
20
-__version__ = "0.0.1"
+__version__ = "0.1.0"
21
__license__ = "MIT"
22
# sample than ``python-lazyimports``, no ``__status__`` metadata! :)
23
0 commit comments