Skip to content

Commit 6a8af68

Browse files
committed
Add pyproject.toml
1 parent 6f89de2 commit 6a8af68

2 files changed

Lines changed: 18 additions & 1 deletion

File tree

pyproject.toml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
from sentinel.core import sentinel
1919

20-
__version__ = "0.0.1"
20+
__version__ = "0.1.0"
2121
__license__ = "MIT"
2222
# sample than ``python-lazyimports``, no ``__status__`` metadata! :)
2323

0 commit comments

Comments
 (0)