From 5f46fde558c467414fa151ad962caaf7f07628fa Mon Sep 17 00:00:00 2001 From: Jan Tuomi Date: Mon, 16 Feb 2026 12:59:14 +0200 Subject: Initial commit --- pyproject.toml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 pyproject.toml (limited to 'pyproject.toml') diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..ae1f84e --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,30 @@ +[build-system] +requires = ["hatchling"] +build-backend = "hatchling.build" + +[project] +name = "jprov" +version = "0.1.0" +description = "FreeBSD jail provisioning tool" +readme = "README.md" +requires-python = ">=3.11" +license = {text = "BSD-2-Clause"} +authors = [ + {name = "jprov"} +] +classifiers = [ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: BSD License", + "Operating System :: POSIX :: BSD :: FreeBSD", +] + +[project.scripts] +jprov = "jprov.main:main" + +[tool.hatch.build] +include = [ + "jprov/**", + "docs/**", + "README.md", + "pyproject.toml", +] -- cgit v1.3